To get a value from the map, you just have to do something like:00
value := mapName[ key ]
If the map contains the key, it returns the corresponding value.
If not, it returns zero-value of the map's value type (0 if map of int values, "" if map of string values...)
m := map[string]s...