freeCodeCamp Accessing Nested Arrays

when accesing nested arrays , if the properties name has a space in it ! How to access the nested array ???

the nested "list two"property needs to be accesed !

Your code so far


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

// Only change code below this line

var secondTree = myPlants[1].list[1]; // Change this line

Your browser information:

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

Challenge: Accessing Nested Arrays

Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-arrays