let exampleArray = [1,2,3,4,5]; // The array to be looped over // Using a for loop for(let i = 0; i < exampleArray.length; i++) { console.log(exampleArray[i]); // 1 2 3 4 5 }