From c5890abcb88c89029c3db47f42c4334eec320906 Mon Sep 17 00:00:00 2001 From: Jeremy L Thompson Date: Mon, 18 Dec 2023 17:37:04 -0700 Subject: [PATCH] fix(curriculum): Nested arrays description typo (#52591) --- .../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 e981818ed76..0bf1fba6911 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` object. +Using dot and bracket notation, set the variable `secondTree` to the second item in the `trees` list from the `myPlants` array. # --hints--