Spot the bug in the optional chain

from Modern JavaScript features
Node 24 intermediate 4 min 1 issue to find

Find why this generated helper still throws for a partially populated profile.

JavaScript
function cityLabel(account) {
  return account?.profile.address.city ?? 'missing';
}

console.log(cityLabel({ profile: {} }));
Open in playground
Report an error