Here's what you learned in this section:
Arrays have fixed sizes declared with [n]type
Use [...] to infer size from initial values
Indices start at and go to length-
Arrays are values. Assignment copies all elements
Pass pointers to let functions modify arrays
[n]type and [m]type are different types
Out-of-bounds access causes a panic
Slices are usually preferred over arrays