Map array ["React","Node","Mongo"] to list items with keys.
Ready — edit the code above and click Run.
const skills = ["React", "Node", "Mongo"];
const items = skills.map((s, i) => `<li key="${i}">${s}</li>`);
console.log(items.join(""));
Try solving on your own first, then reveal the official answer.
Always provide stable key props—React uses them for efficient reconciliation.