Correct choice is (a) var elements = document.getElementsByClassName(“reveal”);
The best I can explain: The getElementsByClassName() method returns a collection of all elements in the document with the specified class name, as a NodeList object. The above code snippet finds all container elements with class “reveal”.