this is the object we want to return from the function
if we write (x,y) => {x, y} the {} are interpreted as being those around the function body, so to make the function return an object using implicit return we need to surround it with (), making it (x,y) => ({x, y})