What are arrays used for?
Storing data (listed)
Describe array literal notation.
Var = {values}
How are arrays different from “plain” objects?
Arrays start at the value 0.
What number represents the first index of an array?
0
What is the length property of an array?
It gives you the value of the last item in the array.
How do you calculate the last index of an array?
array.length - 1