Arrays
Arrays: fixed size, rarely used directly
var scores [3]int
scores[0] = 90
scores[1] = 85
scores[2] = 78An array's length is part of its type — [3]int and [5]int are different types, not just different lengths of the same type. That's rigid enough that you'll rarely declare a bare array in everyday Go. What you'll actually use, constantly, is a slice — next lesson.