A map associates keys with values. Declare one with the map keyword:
var ages map[string]int // maps strings to ints
This declares a map where keys are strings and values are integers. The map is nil at this point and can't store anything yet. You need to initialize it before use.