I think something isn't working

Hello,

I tried a ton to get this code to work but it just doesn’t work and I even watched the video and the ‘Get a Hint’ option. Is there maybe a bug that somehow ruined the code or am I just too stupid to notice something?

// 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;
c = c + “String!”;

@Pandolam Share the link of the challenge.

What do the failing tests say?
The thing that jumps out at me is the fact that with the code that you shared c will be “I am aString!”. I suspect that isn’t what you want.

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