What does this program print? #golang /* Please do not run it on playground etc. */ package main import "fmt" type Point struct { X, Y int } func main() { m := map[*Point]string{ &Point{4, 5}: "4, 5", &Point{5, 4}: "5, 4", } fmt.Println(m[&Point{4, 5}]) }

 — @inancgumus