Arrays are fixed-size sequences of elements. When you need to store multiple values of the same type, arrays are the foundation. Every element has an index, starting at .
Go arrays are simple but limited. Their size is fixed at compile time. In the next section, you'll learn about slices, which are more flexible. First, understand arrays since slices build on them.