Read PORT env var or default to 3000.
Ready — edit the code above and click Run.
const port = process.env.PORT || 3000;
console.log(port);
Try solving on your own first, then reveal the official answer.
process.env is how Node reads configuration—12-factor app pattern.