`()`
:// Doesn't workconst formatName = (first, last) => {full: `${first} ${last}`,short: `${first.charAt(0)} ${last.charAt(0)}`.toUpperCase(),};// Workconst formatName = (first, last) => ({full: ...,short: ...,});formatName('John', 'Doe'); // { full: 'John Doe', short: 'J D' }