How do i define c to equal "I am a String!"?

Tell us what’s happening:

Your code so far


// Initialize these three variables
var a = 5; // This is equal to 5
var b = 10; // This is equal to 10
var c = "I am a String!"; // This is equal to "I am a String!"

// 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 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36.

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

Change the third line of code to c = "I am a" because you want it to concatenate to I am a String!

thank you! i was stuck on that for a while