Multiple choice technology What is the correct JavaScript syntax to write "Hello World"? ("Hello World") "Hello World" document.write("Hello World") response.write("Hello World") Reveal answer Fill a bubble to check yourself C Correct answer Explanation JavaScript uses document.write() to output text to an HTML document. Options A and B are just string expressions without any output method.