JavaScript Stuck in the beginning

Hi, I just bought Moshs JavaScript course and in the beginning im stuck.I am unable to execute variables
let name =‘ss’;
console.log(name);
It is not working as we are seen in examples and it is showing errors as below.Please guide me.
Screenshot (138)|690x387

Hello, I think “name” is sort of a deprecated built-in property in JavaScript. It was used to denote the name property of the browser, (window.name).

Try using something else for the variable name (myName, tag etc.)

Sure , Thankyou for your response