What does this program print?

from Arrow functions
Node 24 beginner 2 min

What does this program print?

JavaScript
const makeLabel = (id) => { id };
console.log(makeLabel('A-17'));
Open in playground
Report an error