C = "I am a String!"; i was asked not to change code below the specified commentbe

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


var a;
a = 6;
var b;
b = 15
var c;
c = "I am a String!";
var c = "I am a String!";

Your browser information:

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

Challenge: Understanding Uninitialized Variables

Link to the challenge:

This was the starting code:

// Only change code below this line
var a;
var b;
var c;
// Only change code above this line

a = a + 1;
b = b + 5;
c = c + " String!";

Do you not see the comments telling you where to edit code and where to not do it?

Part of being a developer is reading instructions closely.

Please press Reset All Code. Then reread the instructions carefully and try it again.

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