0 / 60 seg.

What value is obtained when executing the following code?

function greetingMessage() {
  let message = "Hello ";
  function combine(name) {
    return message + name;
  }
  return combine;
}
const greeting = greetingMessage();
console.log(greeting("John"));