diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index c278375def7..d4d79c7a3ce 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -1432,13 +1432,13 @@ "id": "cf1111c1c11feddfaeb7bdef", "title": "Nest one Array within Another Array", "description": [ - "You can also nest arrays within other arrays, like this: [[\"Bulls\", 23]]. This is also called a Multi-dimensional Array.", + "You can also nest arrays within other arrays, like this: [[\"Bulls\", 23], [\"White Sox\", 45]]. This is also called a Multi-dimensional Array.", "

Instructions

", "Create a nested array called myArray." ], "challengeSeed": [ "// Example", - "var ourArray = [[\"the universe\", \"everything\", 42]];", + "var ourArray = [[\"the universe\", 42], [\"everything\", 101010]];", "", "// Only change code below this line.", "var myArray = [];", @@ -1457,7 +1457,7 @@ "challengeType": 1, "nameEs": "Anida un vector dentro de otro vector", "descriptionEs": [ - "También puedes anidar vectores dentro de otros vectores, como este: [[\"Bulls\", 23]].", + "También puedes anidar vectores dentro de otros vectores, como este: [[\"Bulls\", 23], [\"White Sox\", 45]].", "Ahora vamos a crear un vector anidado llamado myArray." ] },