Exerpad
Exercise 8 · Chapter: Hello, World!Optional+50 XP

Fix the Spacing

The code below should print I am happy with proper spaces, but something is wrong. Fix it!

Hint: When you use commas in console.log(), JavaScript adds spaces automatically.

Need a hint?
3 available · costs 5 XP each
javascript
console.log("I" + "am" + "happy");
Output
Run your code to see the output here.