| A | B |
| array | a “container” that holds more than one value. |
| element | Each value in an array |
| array/variable | must be declared before it can be used. |
| loop/array | if we are putting successive values in the array. |
| Length | property that will give the length (number of elements) of any declared array |
| runtime error | if you try to assign a value or pull a value from an array using an incorrect runtime error. |
| For Each | special loop’s main use is pulling data from arrays |
| Preserve keyword | re-declare the array AND hold the values |
| Dynamic Array | An array that varies in size during run time |
| ReDim | can be executed again and again to change the size of an array throughout program execution |