package main import ( "fmt" ) func main() { numbers := [4]int{35, 45, 55, 65} fmt.Println(numbers[0]) }