Understanding Uninitialized Variables frtgjhnm

Tell us what’s happening:

Your code so far


// Initialize these three variables
var a = 6;
var b = 15;
var c = "I am a";

// Do not change code below this line

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

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:65.0) Gecko/20100101 Firefox/65.0.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-uninitialized-variables

From challenge description:

Initialize the three variables a , b , and c with 5 , 10 , and "I am a"

1 Like

I see now, I was writing my code below the line where I am not supposed to. I realize now that I will need to manipulate the code at the top of the screen. Sorry, I just started getting into these tutorials.

2 Likes