IIFE (Immediately Invoked Function Expression)

What will nested IIFEs with shared scope access output in this example?
var result = (function outer() {
  var x = 10;
  return (function inner() {
    var y = 20;
    return x + y;
  })();
})();

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