var colors = ['red', 'green', 'blue']; colors.forEach((color, colorIndex) => { console.log(colorIndex + ". " + color); });