Which choice is a valid example of an arrow function, assuming c is defined in the outer scope?
a, b => { return c; }
a, b => c
(a,b) => c
{ a, b } => c