Challenge 3 — Solution Task: Write a function describeTeam(captain, ...players) that logs the captain's name on its own line, then logs every remaining player using a rest parameter and forEach. Call it with at least 4 names total. function describeTeam(captain, ...players) { console.log(`Captain: ${captain}`); players.forEach(player => { console.log(`Player: ${player}`); }); } describeTeam("Alice", "Bob", "Carl", "Dana"); Expected output: Captain: Alice Player: Bob Player: Carl Player: Dana Notes: - captain takes the first argument only; ...players collects every remaining argument into a real array, no matter how many are passed in. - players.forEach works because rest parameters always produce an actual array, unlike the older arguments object, which only behaves like an array. - describeTeam would work identically with 2 names or 10 — only captain is fixed; players simply grows or shrinks.