Let's build a drive-thru ordering system using everything we've learned about functions!
Dictionaries are another useful data structure. They store key-value pairs:
Access values with square brackets:
menu = {
'burger': 5.99,
'fries': 2.99,
'drink': 1.99
}