diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-unshift.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-unshift.md index 39d4b3c002..d6be54037c 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-unshift.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-unshift.md @@ -28,7 +28,7 @@ Add `["Paul",35]` to the beginning of the `myArray` variable using `unshift()`. # --hints-- -`myArray` should now have \[["Paul", 35], ["dog", 3]]. +`myArray` should now have `[["Paul", 35], ["dog", 3]]`. ```js assert(