0 / 60 seg.

What is the result of the following code?

function greet(name) {
  return `Hello ${name}`;
}
const message = greet("Alice");
console.log(message);