What are arrays used for?
storing list data
Describe array literal notation.
created using square brackets
How are arrays different from “plain” objects?
arrays are numerically indexed
What number represents the first index of an array?
0
What is the length property of an array?
measures the length of the array
How do you calculate the last index of an array?
length property - 1