What is wrong with this code in the beginner java course? I have done this for two days and it still doesn't work

Tell us what’s happening:

Your code so far

// Initialize these three variables

var a = 6;
var b = 15;
var c = "I am a string!";

// Do not change code below this line

a = a + 1;
b = b + 5;
c = c + " String!";

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0.

Link to the challenge:
https://www.freecodecamp.org/challenges/understanding-uninitialized-variables

You’ve initialized c to the wrong value. It should be "I am a", not "I am a string!".