You have the following markup.

You need to change the markup programmatically to display as follows:

Which line of code should you use?
Select an option, then click Submit answer.
-
○
document.getElementById("blue").style.display = "none"
-
○
$("#blue").css("visibility", "collapse");
-
○
document.getElementById("blue").style.visibility = "hidden"
-
○
$("#blue").css("display", "hidden");
-
○
document/getElementById (“blue”).style.visibility = “hidden”
