Basic JS subtract. Is this a bug?

I did the exercise correctly, I even watch the video for the solution and it’s the same I wrote. But when I run the tests, it pops out this message:

// running tests
Only subtract one number from 45.
// tests completed

and also:

Make the variable difference equal 12.

Only subtract one number from 45.

So, i can continue to the next lesson.

let difference = 45 - 33;

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:70.0) Gecko/20100101 Firefox/70.0.

Challenge: Subtract One Number from Another with JavaScript

Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript

If you can provide the code that you’ve written for the challenge that would be great. We can’t really help much without knowing what you’ve tried to do.

Change your let to var to pass (specifics…)

Just replacing 0 with 33 worked for me :slight_smile: