This is a combination of the previous two atomics. You will be either hiding or showing elements, based on their current display state.
You have some starter HTML code. Review that and then write code that accomplishes the following:
- Find all of the elements that you want to toggle.
- When you click a button, those elements should either be shown or hidden.
- When you click that button again, those elements should be toggled again.
- You can repeat as many times as you like--the button always "toggles" the display state of the elements.