How do you pass arguments to an arrow function?
By using the arguments keyword within the function body.
arguments
Arrow functions cannot accept arguments.
By enclosing the arguments in parentheses after the arrow (=>) sign.
By separating the arguments with commas after the arrow (=>) sign.