Another BIG! problem!

Tell us what’s happening:
I keep writing var c=“I am a String!” and it is wrong.WHY!!!

Your code so far


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

// 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 (Linux; Android 6.0.1; SM-G532F Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36.

Challenge: Understanding Uninitialized Variables

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

Why have you got 6 var declarations?

  1. That isn’t what the instructions told you to set c to.
  2. You should not have redeclared a, b, and c.

Slow down and read the instructions carefully.