Write Reusable JavaScript with Functions - BUG

Tell us what’s happening:
I have written this challenge out exactly as asked and I get all X’s on the challenge. Ive even had a friend who’s fluent in Javascript confirm this. Can someone else confirm there is a bug on this challenge?

Your code so far


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

ourReusableFunction();

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

reusableFunction();

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/write-reusable-javascript-with-functions

You have a typo in the name of your function.

1 Like

Forgive my complete ignorance. THANK YOU!

image

2 Likes