package main

import "fmt"

func main() {
	array := [5]int{2, 5, 4, 6, 5}
	fmt.Println(array)

}