Like an array, the indices of an array list start at 0.
0
Can you get the first element from the friends array list?
friends
That's right! Just like an array, we can get elements using .get().
.get()
Oh noes! Here's a hint: friends.get(1) gets "Amy".
friends.get(1)
"Amy"