Question 10 of 5219%
10

What will the Greetings function return in the code below?

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

Greetings("Giovanni")
10/52