diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json b/challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json index 0a871ef287..d2ee0ce55c 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json +++ b/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\"];",