let array = [10, 20, 30]; for (let valore of array) { console.log(valore); } // Output: // 10 // 20 // 30