Write Reusable JavaScript with Functions ?!

Tell us what’s happening:

My code seems to be right, but I am unable to continue foward.

Your code so far

function ourReusableFunction() {
 console.log(“Heyya, World”);
}

ourReusableFunction();

// Only change code below this line
function reusableFunction() {
 console.log(“Hi World”);
}
reusableFunction();```
**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36```.

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

A couple of questions:

  1. Have you tried using a different browser?
  2. Does the linter show any errors in the code editor?
  3. Can you try copy-and-pasting the code below to see if it works?

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

ourReusableFunction();

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

reusableFunction();

The strings in your code is using slanted quotes as delimiters, those will not work.

Could someone solve?

I’ve looked at this also, I know my code is correct.
I feel as though there is a bug of some sort…

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

reusableFunction();

I could be wrong, and frequently am, but I would imagine a working platform is a higher priority than whatever was introduced that potentially caused this bug. Is there a roll-back strategy that could be implemented to remedy the situation?