Question: Which choice is an incorrect way to define an arrow function that returns an empty object?

  1. => `({})`
  2. => `{}`
  3. => `{ return {};}`
  4. => `(({}))`

Answer: The correct answer of the above question is Option B:=> `{}`