What is the correct syntax for using an arrow function as an object method?
let obj = { method: () => { ... } };
let obj = { method() => { ... } };
let obj = { method: () => { ... }, };
let obj = { method() { ... } };