const greet = (who) => { return `Hello, ${who}!`; }; greet('Eric Cartman'); // => 'Hello, Eric Cartman!'