Is something wrong with the code?
I was asked to create an if statement, i leave the link here: https://www.codecademy.com/courses/learn-javascript-scope/lessons/scope/exercises/block-scope-ii?action=resume_content_item&course_redirect=introduction-to-javascript
is about the instruction number 3, and here is my code:
const visibleLightWaves = () => {
let lightWaves = 'Moonlight';
let region = 'The Arctic';
if (region === 'The Arctic');{}
console.log(lightWaves);
}
visibleLightWaves();