Basic JavaScript - Accessing Nested Arrays

Tell us what’s happening:
Describe your issue in detail here.
my code so far seem to be correct please where am i getting it wrong?
myPlants[1].list[1];
Your code so far

const myPlants = [
{
  type: "flowers",
  list: [
    "rose",
    "tulip",
    "dandelion"
  ]
},
{
  type: "trees",
  list: [
    "fir",
    "pine",
    "birch"
  ]
}
];

myPlants[1].list[1];

const secondTree = "";
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.49

Challenge: Basic JavaScript - Accessing Nested Arrays

Link to the challenge:

Hi.
You need to assign your solution to variable secondTree.

thanks, i have done that but its saying i should use dot and bracket notation to access myPlants

Need to see your updated code to figure out the issue.

myPlants[1].list[1];

const secondTree = “pine”;

You are very close. You want to use the string stored in myPlants to be assigned to secondTree, not a new string you made.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.