Asked by amaya battle

Write a function favoriteColors that takes one parameter: colors (an array of three strings). The function should return a string in the format: “My favorite colors are [color1], [color2], and [color3].
Answer-
function favoriteColors(colors) {
const [c1, c2, c3] = colors;
return `My favorite colors are ${c1}, ${c2}, and ${c3}.`;
}

Fix this code, make it correct, make sure the colors are clarified not just (c1,c2,c3) add real colors, also give me just the code, no instructions or examples

All Answers 1

Answered by GPT-5 mini AI
function favoriteColors(colors = []) {
const [firstColor = 'red', secondColor = 'green', thirdColor = 'blue'] = colors;
return `My favorite colors are ${firstColor}, ${secondColor}, and ${thirdColor}.`;
}