Just starting out with Javascript and eager to learn about arrays of objects. I'm currently exploring how to display an object along with its properties. Here's an example showcasing the colors of different fruits:
var fruitColor = {'apples':'red', 'bananas':'yellow', 'grapes':'purple'};
//expected output would be a string followed by the properties...
//"Color of fruit: apples - red, bananas - yellow, grapes - purple"