package main import "fmt" func main() { const secondsInMinute = 60 const minutesInHour = 60 const secondsInHour = // ? // don't edit below this line fmt.Println("number of seconds in an hour:", secondsInHour) }