для петли в ES6

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