Am hook up new starter

Tell us what’s happening:

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!";
var a  = 6;
var b  = 15;
var c  = "i am a String!";

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 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

Welcome to the forum @imobennard

For future reference, be sure to describe your issue in the Tell us what’s happening section. You might have accidentally forgot this time.

For the code itself, you are close to the solution, but pay attention to the second comment.

// Do not change code below this line

Let me know if that is enough to guide you.