From 1fe1371b161830258e7e103378b2075d19a212df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kelvin=20S=C3=A1nchez?= Date: Wed, 17 Feb 2021 15:24:53 -0400 Subject: [PATCH] add missing inline-code block (#41153) --- .../basic-javascript/manipulate-arrays-with-unshift.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(