Someone should please help me with this

Tell us what’s happening:

Your code so far


// Initialize these three variables
var a;
var b;
var c;

// Do not change code below this line

a = 5 + 1;
b = 10 + 5;
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/70.0.3538.110 Safari/537.36.

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

Almost there, try again following the instruction of NOT writing BELOW the line. Reset the challenge and think of how you can solve it respecting that

Examle:
var f;
var r;
var t;


f = f + 1;
r = r + 5
t = t + " World"

f need to get 6
r need to get 36
t final word need to be "“Hello World”

so we give variables the value
f = 5;
r = 31;
t = “Hello”;