Spot the bug in the order formatter

from this binding
Node 24 beginner 4 min 1 issue to find

Find why this generated formatter throws when map invokes it.

JavaScript
'use strict';

const formatter = {
  prefix: 'ORD',
  format(id) {
    return `${this.prefix}-${id}`;
  },
};

console.log(['7', '8'].map(formatter.format));
Open in playground
Report an error