Some participant confusion about how this Challenge is worded:
==
Create a dictionary fruits_dict with the following lists. Print the list of keys in the dictionary.
fruit = ['apple', 'orange', 'mango']
length = [3.2, 2.1, 3.1]
color = ['red', 'orange', 'yellow']
fruits_dict= {'fruit':fruit,
'length':length,
'color':color}
fruits_dict