What are arrays used for?
storing lists of data
Describe array literal notation.
variable = []
How are arrays different from “plain” objects?
They are in a numbered list
What number represents the first index of an array?
0
What is the length property of an array?
shows how many values are in the array
How do you calculate the last index of an array?
array.length -1