Arrow Functions

What is the output of this closure example with an arrow function?
const outer = function() {
  const x = 5;
  const inner = () => console.log(x);
  return inner;
};

const fn = outer();
fn();
Next Question (10/20)