Initialize the three variables a, b, and c with 5, 10, and "I am a" respectively so that they will not be undefined

Tell us what’s happening:

Your code so far


// Only change code below this line
var a = 1;
var b = 5;
var c = "I am a" ;
// Only change code above this line

a = a + 1;
b = b + 5;
c = c + " I am a!";
 

Your browser information:

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

Challenge: Understanding Uninitialized Variables

Link to the challenge:

Read your title once again, you’ll know what is wrong

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

The more information you give us, the more likely we are to be able to help.


with what info you have given I can see this:

you changed code below this line