Beneath the region variable, create an if statement that checks if the region is the ‘The Arctic’.
I
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
/home/ccuser/workspace/javascript_101_Unit_3b/light.js:5
if region === ‘The Artic’
^^^^^^
SyntaxError: Unexpected identifier
at createScript (vm.js:53:10)
at Object.runInThisContext (vm.js:95:10)
at Module._compile (module.js:543:28)
at Object.Module._extensions…js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.runMain (module.js:605:10)
at run (bootstrap_node.js:427:7)
at startup (bootstrap_node.js:151:9)
const visibleLightWaves = () => {
let lightWaves = 'Moonlight'
console.log(lightWaves);
let region = 'The Artic'
if region === 'The Artic'
};
visibleLightWaves()