Tell us what’s happening:
I’m just starting and I’m at a stand still. it asked me to change the Var of a & b to 6 & 15 and to change c to I am a String so I did what I thought was right and when I went to click run test it will not update. what should I do?
Your code so far
// Only change code below this line
var 6;
var 15;
var I am a String;
// Only change code above this line
a = a + 1;
b = b + 5;
c = c + " String!";
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 12607.82.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.123 Safari/537.36.
Not quite, you need to pick the right start value to get the desired end value.
// Only change code below this line
var a = A_NUMBER_THAT_WILL_MAKE_6_WHEN_YOU_ADD_1;
var b = A_NUMBER_THAT_WILL_MAKE_15_WHEN_YOU_ADD_5;
var c = A_STRING_THAT_WILL_MAKE_I_AM_A_STRING_WHEN_YOU_ADD_STRING;
// Only change code above this line
a = a + 1;
b = b + 5;
c = c + " String!";