Write Reusable JavaScript with Functions broken?

Tell us what’s happening:
I cannot for the life of me figure out why this is not working?

Your code so far

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

ourReusableFunction();

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


reuseableFunction();

Your browser information:

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

Link to the challenge:
https://www.freecodecamp.org/challenges/write-reusable-javascript-with-functions

Check your function name’s spelling.

Like Kevcomedia said, check your function name spelling.