Erstellen Sie eine Schleife, die jedes Element in einem Array durchläuft
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