Get the Banana from the list!
array[index]
Arrays are zero-indexed, meaning the first element is at index 0, the second is at index 1, and so on.
const arr = ['a', 'b', 'c']; console.log(arr[1]); // Output: 'b'