- An array is - a Contiguous ([next or together in sequence](https://www.lexico.com/en/definition/contiguous)) set of values where - each element in the array is of the same "size" (Type) - An array variable points to the **start** of the array - An array with an **index** points to an **element** in the array - The *index* is an **offset** from the start of the array - Arrays use a **zero-based index** to make the math simpler - Arrays are **fixed** in size - Single-dimension - Two-Dimension - Multi-Dimension