Initializing Variables with the Assignment Operator HELP ME

Tell us what’s happening:
I don’t understand how to give the variable a value

Your code so far


// Example
var ourVar = 19;

// Only change code below this line

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.90 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/initializing-variables-with-the-assignment-operator/

A variable when it appears for the first time is introduced with the keyword var, after that you put in the variable name

var ourVar;

You could stop here or you may want to give a value to the variable. To give a value to the variable you put the assignment operator = to the right of the variable name and then after that the value you want to assign to the variable

var ourVar = 19;

Now you just need to do the same creating a variable named a and giving it a value of 9 like asked in the challenge