Question 12 of 5821%
12

What will the Greetings function return in the code below?

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

Greetings("Giovanni")
12/58