What happens when you call `delete` on a key that is not in the map?m := map[string]int{"x": 1} delete(m, "y") fmt.Println(len(m))