From 0c06d003f601e612f267252b6fd12c1c86b6b986 Mon Sep 17 00:00:00 2001 From: sahilkhurana02 Date: Thu, 16 Jun 2016 23:28:36 +0530 Subject: [PATCH] Fixed challenge description. Modified the description to make it a bit more clear. Fixed challenge description and moved the example code to its own independent line. --- .../basic-javascript.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index 668ee650a2..79a7536d03 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\"].", "

Instructions

", - "Create a new array called 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
Refer to the example code in the text editor if you get stuck." ], "challengeSeed": [