An array holds a fixed number of elements of the same type. Declare one with the size in brackets:
var numbers [5]int // array of 5 integers
All elements start at their zero value. For int, that's . The size is part of the type, so []int and []int are different types. Once created, an array's size cannot change.