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