From 2c9bda5cc31c9d9d91d244d1077e863a139cad6a Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 2 Feb 2017 12:58:01 -0600 Subject: [PATCH] clarified challenge instructions --- .../basic-data-structures.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json b/seed/challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json index 0a871ef2873..d2ee0ce55ca 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json @@ -88,7 +88,7 @@ "
ourArray[1] = \"not b anymore\";
// ourArray now equals [\"a\", \"not b anymore\", \"c\"];
", "Using bracket notation, we have now reset the item at index 1 from \"b\", to \"not b anymore\".", "
", - "In order to complete this challenge, set the 2nd position (1st index) of myArray to anything you want, besides \"b\"." + "In order to complete this challenge, set the 2nd position (index 1) of myArray to anything you want, besides \"b\"." ], "challengeSeed": [ "let myArray = [\"a\", \"b\", \"c\", \"d\"];",