diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 15adb9bd5ba..b255a114ec9 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -1595,9 +1595,10 @@
"title": "Store Multiple Values in one Variable using JavaScript Arrays",
"description": [
"With JavaScript array variables, we can store several pieces of data in one place.",
- "You start an array declaration with an opening square bracket, end it with a closing square bracket, and put a comma between each entry, like this:var sandwich = [\"peanut butter\", \"jelly\", \"bread\"].",
+ "You start an array declaration with an opening square bracket, end it with a closing square bracket, and put a comma between each entry, like this: ",
+ "var sandwich = [\"peanut butter\", \"jelly\", \"bread\"].",
"
myArray that contains both a string and a number (in that order).",
+ "Modify the new array myArray so that it contains both a string and a number (in that order).",
"Hint