In order to add values to a dictionary, we can assign keys with values, so-called key-value pairs, in brackets.

Sweet! If we assign values to a dictionary like that, we don't need to initialize it. In this example, 1 is the key to "a" and 2 points to "b".

Careful, though: myDict requires integer keys and string values.