An index is the position of an element in an array. In Kotlin, arrays start at index 0.

Can you use an index to get "cat" from animals?

Whoa, good job! By adding .get() after the array's name, we can access elements in it.

Almost! We want to get the element at index 0.