Understanding Uninitialized Variables(seems okay but can,t figure out actual problem)

Tell us what’s happening:
Thanks everyone helping me out,I did figure out and it seems like right now but it’s still show me like this and I can,t figure out what’s wrong with my code now.can anyone help me plz

Your code so far


// Initialize these three variables
var a = 5;
var b = 10;
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 (iPad; CPU OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1.

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

Illegal token, you are using tilted quotes, which are not valid characters. You can’t use “”, you need to use ""

1 Like