map.keys.forEach((k) => print("Key : $k"));

map.values.forEach((v) => print("Value: $v"));

map.forEach((k, v) => print("Key : $k, Value : $v"));