diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-arrays.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-arrays.md index 0bf1fba6911..525977abeac 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-arrays.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-arrays.md @@ -41,7 +41,7 @@ ourPets[1].names[0]; # --instructions-- -Using dot and bracket notation, set the variable `secondTree` to the second item in the `trees` list from the `myPlants` array. +Using dot and bracket notation, set the variable `secondTree` to the second element in the `list` array from the second object in the `myPlants` array. # --hints--