"Hi world" Javascript challenge

I have been working on this one for some time now and I think it would be a waste to just pass it. It is the javascript challenge titled "
Write Reusable JavaScript with Functions" and from what I have seen, I believe my answer is correct, but please correct me if I am wrong.

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

ourReusableFunction();

// Only change code below this line

function reusableFunction() {
  console.log("Hi world");
}

reusableFunction();

the first and last goal are met, but the second is still preventing me from moving on.

never mind. I returned and the goals don’t need the “W” in world to be capitalized but the instructions do.

I cleaned up your code.
You need to use triple backticks to post code to the forum.
See this post for details.