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