Hoisting and Execution Context

What will be the output of this code?
function example() {
  console.log(this);
}

example();
Next Question (20/20)