How can you rewrite this function using arrow function syntax?
let product = (x,y) -> x*y;
let product => x*y;
let product = (x,y) => x*y;
let product => (x,y) { x * y; }