Can not find were the bug is in my code

Hello I am struggling with the code now and is says that should not modify the code above the specified comment but when I look at the code It looks like I did not
modify the code above the specified comment. What is wrong? Even though I read the hint and listen the video I can not find The error.

Your code so far


var a = 3;
var b = 17;
var c = 12;

// Only modify code below this line

a += 12;
b += 9
c += 7;

Your browser information:

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

Challenge: Compound Assignment With Augmented Addition

Link to the challenge:

I’ve passed the test with your answer, the problem could be that you used a var instead of default a let in challenge, or probably something other.

Thank you @noszone I just passed it!

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