Create a function that returns the given argument, but by using an arrow function.
An arrow function is constructed like so:
arrowFunc=(/*parameters*/)=>//code here
arrowFunc(3) ➞ 3
arrowFunc("3") ➞ "3"
arrowFunc(true) ➞ true
Check the Resources tab for more information on arrow functions.