I keep seeing past posts about this exact problem and my code looks the same as theirs and all of a sudden they figure it out but don’t come back and say anything. And the comments from coders haven’t been to helpful. I’ve tried a few different codes and I’d really like to move forward in the module.
Unfortunately the cpu I’m on can’t take a screen shot so I’m C&P below some of my attempts. Can someone please tell me where I’m going wrong?
// Only change code below this line
var a; = 5; var a; = 5 + 1 = 6 var a; = 6
var b; = 10; var b; = 10 + 5= 15 var b; = 15
var c; = “I am a;” var c; = “I am a;” + “String!;” var c; = “I am a String!;”
// Only change code above this line
a = a + 1;
b = b + 5;
c = c + " String!";
#2 that I tried:
// Only change code below this line
var a; = 5 + 1 = 6 var a; = 6;
var b; = 10 + 5 = 15 var b; = 15;
var c; = “I am a” + “String!” = “I am a String!;” var c; = “I am a String!;”
// Only change code above this line
a = a + 1;
b = b + 5;
c = c + " String!";
#3 that I tried
// Only change code below this line
var a; = 5;
var b; = 10;
var c; = “I am a;”
// Only change code above this line
a = a + 1;
b = b + 5;
Each time I’m getting the same results:
a should be defined and have a final value of 6
b should be defined and have a final value of 15
c should be defined and have a final value of “I am a String!”
An explanation as to why the answer is what the answer is would be super helpful. I’d also like the solve please, I’m crying “uncle!” Thank you!