Exercise 6 · Chapter: Hello, World!Required+50 XP
Fix the Poem
This poem has two bugs. Find and fix them so it prints:
Roses are red Violets are blue Coding is fun And so are you
Need a hint?
3 available · costs 5 XP each
javascript
console.log("Roses are red");
"Violets are blue";
console.log("Coding is fun");
console.log('And so are you");
Output
Run your code to see the output here.