Create a loop that runs through each item in the "fruits" array. var fruits = ['Apple', 'Banana', 'Orange'] for(x of fruits){ console.log(x); }