package location import "math/rand" type Place struct { Latitude float64 Longitude float64 Name string } func SpinThatWheel() Place { // Cool places to be in Germany :) places := []Place{ {Latitude: 48.119195, Longitude: 11.602183, Name: "ANX84, netcup Colocation im NorthC RZ, Nürnberg"}, } pick := rand.Int() % len(places) return places[pick] }