What happens when a user clicks the button?

<html>
<body>
<h3>Terms of Service</h3>
<p>You can trust us with anything...</p>
<button onclick="accept()">
<em>I Trust You</em>
</button>
</body>
</html>]]>
Nothing, the HTML doesn't include a scriptThe accept() function is calledNothing, there's no button elementThe text of the h3 element changes

Nothing, the HTML doesn't include a script.