Hahaha aaaa arh- please help

uh, I swear this is right, help?

Your code so far


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

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

Challenge: Compound Assignment With Augmented Addition

Link to the challenge:

You should be adding the same values as the original code.

it says that it should equal those numbers:
Screen Shot 2022-03-17 at 4.42.37 PM

Right… But will a+15 be equal to 15 when a starts out as 3?

You’re right, I needed to make the total by adding the remaining numbers needed for the equation.

Screen Shot 2022-03-17 at 5.08.35 PM

thanks!

1 Like

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