Question: You've written the event listener shown below for a form button, but each time you click the button, the page reloads. Which statement would stop this from happening?
- `e.blockReload();`
- `button.preventDefault();`
- `button.blockReload();`
- `e.preventDefault();`
Answer: The correct answer of the above question is Option D:`e.preventDefault();`