Instead of hard coding a value (or literally typing it in) they want you to access it from the myPlants object. If we look myPlants is an array right? So we can use indexes to get each value, just like any other array:
const arr = ['a', 'b', 'c'];
const letter_a = arr[0]; // this will be equal to 'a'
const letter_b = arr[1]; // this will be equal to 'b'
Then with objects, we can get the value of each property using dot notation right?
const obj = {
property1 : 'a value',
property2 : 'another value',
property3 : 'yet another value'
}
const first = obj.property1; // will be 'a value'
const second = obj.property2; // will be 'another value'
For this task we need to chain these together. myPlants is an array with two objects, we need the one with type "trees" so use indexing to grab the second object:
myPlants[1]
Then we need the list property from that object so we use dot notation: