From 9fcd4f5c165bd930b6d2f81e10f94d980018d2de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lasse=20J=C3=B8rgensen?= <28780271+lasjorg@users.noreply.github.com> Date: Tue, 19 Dec 2023 16:50:36 +0100 Subject: [PATCH] fix(curriculum): change data type and verbiage (#52595) Co-authored-by: Naomi Carrigan --- .../basic-javascript/accessing-nested-arrays.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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--