var fruitTypes = [{type:"Banana", color:"Yellow"},
{type:"Orange", color: "Orange"},
{type:"Apple", color: "Red"}];
How would I print each object "type" all at once inside of this array, without using a loop or concatenating each individual index?