fix(curriculum): Nested arrays description typo (#52591)

This commit is contained in:
Jeremy L Thompson
2023-12-18 17:37:04 -07:00
committed by GitHub
parent 9fe6a46b81
commit c5890abcb8

View File

@@ -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--