Iterating over dictionary keys

To iterate over a dictionary's keys using a for...in loop, add the following into Playgrounds:

for key in dictPizzas.keys { 
  print(key) 
} 

Your code and output should now look like this: