let items = ['beef', 'cabbage', 'javascript']; // Defines a list of items for (let item of items) { // Defines for loop with a variable of 'item' console.log(item); // Prints the item that is found }