0 / 60 seg.

What value is obtained when executing the following code?

function initialize() {
  let name = "Mozilla";
  function showName() {
    console.log(name);
  }
  return showName;
}
const myFunction = initialize();
myFunction();