Basic JavaScript - Compound Assignment With Augmented Subtraction

Tell us what’s happening:
This is my solution. I even checked it on the Internet and there is no mistake; however, i cannot even submit and complete the challenge. I even tried to remain the original code and submit and yet the requirement"You should not modify the code above the specified comment." was not completed, let alone other requirements. I don’t know what to do anymore, pls help.
Thank you in advance.

Your code so far

let a = 11;
let b = 9;
let c = 3;

// Only change code below this line
a -= 6;
b -= 15;
c -= 1;

Your browser information:

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

Challenge: Basic JavaScript - Compound Assignment With Augmented Subtraction

Link to the challenge:

your code passes for me

you can try:
reload the page
clear browser cache and local storage
deactivate browser extensions
update your browser to the latest version
an incognito window
a different browser

1 Like

Wow the last solution solved it. I switched the browser and it worked. Thanks a lot.
I wonder why Chrome cannot complete the challenge tho, I tried all the solutions above.
Still, thank you so much.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.