Not every function is declared with the function name() form. Function expressions are common in callbacks and assigned helpers, so beginners should practice that syntax too.
const greetStudent = function (name) {
return `Welcome, ${name}!`;
};
Store the function in a const variable.