It looks like all the ones I c

Tell us what’s happening:
I think my code looks like all I c…but it won’t take it where am I going wrong

Your code so far


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

// Only change code below this line
a += 15;
b += 26;
c += 19;

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Mobile Safari/537.36.

Challenge: Compound Assignment With Augmented Addition

Link to the challenge:

This adds 15 to a. But the test says:

a should equal 15 .

It’s starting out as 3. What would you have to add to it to get it to equal 15?

Then do the same thing for the other values (check the test outputs to see what they should be).

4 Likes

thanku that helped thanku for getting back