What is an array in JavaScript?
a list of items, data.
How do you create an array literal? var array = [];
var array = [];
What are the keys for the values inside an array?
index number
Arrays have a property named length. Because arrays have a properties, what other data structure are they similar to?
objects