I get the message "Have you completed the code to add values to the array?" after clicking Submit. The console output is [1 2 3 4 5]
package main
import "fmt"
func main() {
var intArray [5]int
for i := 0; i < 5; i++ {
intArray[i] = i + 1
}
fmt.Println(intArray)
}