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].”
give me just the code, no instructions

All Answers 1

Answered by GPT-5 mini AI
function favoriteColors(colors) {
const [c1, c2, c3] = colors;
return `My favorite colors are ${c1}, ${c2}, and ${c3}.`;
}