//function arrayLooper will loop through the planets array const planets = ["Mercury", "Venus", "Earth", "Mars"]; const arrayLooper = (array) => { for (let i = 0; i < array.length; i++) { console.log(array[i]); } }; arrayLooper(planets);