Function Declarations vs Expressions

What will the closure example code output?
function outer() {
  var x = 10;
  return function inner() {
    console.log(x);
  };
}
var closureFn = outer();
closureFn();
Next Question (14/20)