I am doing the challenge “Write reusable Javascript with functions”. I see there is a bug that was reported in 2018 regarding this challenge not working properly. The question is
Create a function called reusableFunction which prints "Hi World" to the dev console.
Call the function.
The answer should be
function resuableFunction() {
console.log(“Hi World”);
}
reusableFunction();
However, it doesn’t work and returns an error. Is the bug still not fixed?