if (x === 5) {
console.log('Hello, World!');
}
This is an example of a common programming error. In JavaScript, semi-colons are not just for decoration. They are, in fact, required at the end of every statement. Without them, your code will be full of syntax errors.
Simply add semi-colons where they are missing, like this: if (x === 5) ; { console.log('Hello, World!'); }
And that's it! You've fixed the bloop.