para loop no ES6
let colors = ['Red', 'Blue', 'Green'];
for (let color of colors){
console.log(color);
}
Thoughtful Tuatara
let colors = ['Red', 'Blue', 'Green'];
for (let color of colors){
console.log(color);
}