Iterating over dictionary keys

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

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

Your code and output should now look like this: