10. What will the Greetings function return in the code below?

function Greetings(name) {
  return
    "Good morning, " + name
}

Greetings("Giovanni")