Access array elements using an index in brackets. Indices start at :
numbers := [5]int{10, 20, 30, 40, 50}
first := numbers[0] // 10
third := numbers[2] // 30
numbers[4] = 55 // change last element
Accessing an index outside the array bounds causes a panic at runtime. Go checks bounds on every access to prevent memory corruption.