As already mentioned you can declare an unordered map of any type. Let's have a unordered map named first with string and integer type.
unordered_map<string, int> first; //declaration of the map
first["One"] = 1; // [] operator used to insert the value
first["Two"] = 2...