Cree un bucle que se ejecute a través de cada elemento en una matriz

Create a loop that runs through each item in the "fruits" array.

var fruits = ['Apple', 'Banana', 'Orange']

for(x of fruits){
	console.log(x);
}
Wicked Wolverine