IIFE (Immediately Invoked Function Expression)

What will an IIFE using arrow function syntax output in this example?
const result = (() => {
  const x = 10;
  return x * 2;
})();

console.log(result);
Next Question (18/25)