// Defining an anonymous arrow expression that simply logs a string to the console.
console.log(() => console.log('Shhh, Im anonymous'));
// Defining a named function by creating an arrow expression and saving it to a const variable helloWorld.
const helloWorld = (name) => {
console.log(`Welcome ${name} to Codecademy, this is an arrow expression.`)
};
// Calling the helloWorld() function.
helloWorld('Codey'); //Output: Welcome Codey to Codecademy, this is an Arrow Function Expression.