Tell us what’s happening:
**Your code so far**
function timesfive(yo) {
return yo * 5;
}
var answer = timesfive(5);
var answer1 = timesfive(0);
var answer2 = timesfive(2);
console.log(answer);
console.log(answer1);
console.log(answer2);
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36
.
Challenge: Return a Value from a Function with Return
Link to the challenge: