Let's say a.length returns 3. How can we print the third element of a?
a.length
3
a
Perfect! Arrays are zero-based, which means the third element has an index of 2.
2
Oh, snap! Arrays are zero-based, which means the third element has an index of 2.