0
Edited. The console is returning the function itself as a response, not the function result.
The goal is for the function to say whether or not one value is greater than the other.
let primeiraVariavel = 34;
let segundaVariavel = 10;
function resultado() {
return primeiraVariavel > segundaVariavel ? "verdadeiro" : "falso";
}
console.log(resultado);