We just added some timers to our page as a class. Now it's your turn.
- use setInterval to add a
<p>tag to the page every 5 seconds. The new paragraph tag should read,"Nah nah nah nah nah nah, nah nah nah, hey Jude" - Set a timeout so that after 15 seconds on the page, an
<p>tag appears. The<p>should be red in color and read,'Wow, you must really like this page...' - Add a click event listener to the lone
<button>element on the page. This listener should disable the interval and the timeout that you set in #2 and #3, respectively, as well as remove the button from the DOM (We won't be needing it anymore).