Help me in solving JS20A problem

My issue

Iam not getting answer even I write the right one.

My code

// Add the code below this line
document.body.innerHTML = '<h2>CodeChef is the best!!!</h2>';

Learning course: Web development using JavaScript
Problem Link: CodeChef: Practical coding for everyone

Your code is correct!

The problem is that this system is not automated and the solution contains a space after semicolon.

Corrected Code:
document.body.innerHTML = '<h2>CodeChef is the best!!!</h2>'; //space after ; symbol"

Thank you

Thank you too!

if the response was helpful, consider upvoting it and marking it as solution…