The code above accesses the developer variable with its name in the console.log(). Note that the value between the parentheses is the value that will be printed.
Print the value of the character variable to the console. Then, click the “Console” button to view the JavaScript console.
The developer variable is from the example.
You changed the variable name form character to developer, and the string from Hello to character
Here is the original code:
let character = 'Hello';
For this step, add a second line of code to display the variable in the console, without modifying the first line.