Javascript course

Tell us what’s happening:
Hi Im having troubles to continue to the next excersise, but I cant figured out what the problem in this function please any suggestion thanks…

  **Your code so far**

function timeFive(num) {

return num * 5
}
console.log(timeFive(5));
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.53

Challenge: Return a Value from a Function with Return

Link to the challenge:

Check what the name of your function is supposed to be. At the minute, the tests are trying to run a function with the correct name. And because that function doesn’t exist, the tests fail.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.