Write Reusable JavaScript with Functions - This is screwing me over

Tell us what’s happening:
So, I’ve come across this, and, I did exactly like the instructions and the given example above. But, it tells me that I am making a mistake. I don’t get it.

Your code so far


// Example
function ourReusableFunction() {
  console.log("Heyya, World");
}

ourReusableFunction();

// Only change code below this line
function reusableFunction() {
    console.log("Hi World");
}








Your browser information:

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

Sorry, my bad. I forgot to call in the function after.

2 Likes