boa tarde pessoal, como resolvo isso? estou fazendo alguns teste de entrevista de trabalho, e pedem para fazer testes da um site
// Complete this function to return either
// "Hello, [name]!" or "Hello there!"
// based on the input
function sayHello (name) {
// You can print to STDOUT for debugging like you normally would:
console.log(name);
// but you need to return the value in order to complete the challenge
return name; // TODO: return the correct value
}