// slices2 // Make me compile! // I AM NOT DONE package main import "fmt" func main() { names := [4]string{"John", "Maria", "Carl", "Peter"} lastTwoNames := names[] // after figuring out the answer, try with other low/high bounds fmt.Println(lastTwoNames) }