Find why label reads the builder receiver instead of the account.
JavaScript
function buildAccount(name) {
return {
name,
label: () => this.name,
};
}
const account = buildAccount.call({ name: 'builder' }, 'west');
console.log(account.label());