{
let colorsOfTheRainbow = [ "red", "orange", "yellow", "green", "blue", "indigo", "violet" ]
let allColors = ""
for( let i = 0; i<colorsOfTheRainbow.length; i++) {
allColors+= "A color of the rainbow is " + colorsOfTheRainbow[i] + ". ";
}
return allColors
}