Find variables that were never changed after the initialization.

Make them constants.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

solution.js

/**
 * Find variables that were never changed after the initialization.
 *
 * Make them constants.
 * */

let name = 'Hero';
let greeting = 'Good Day!'
let count = 0;

count = count + 1;
console.log(greeting + " " + name + ". Count is " + count);