I have a question on something. So I have written the code below but I have encountered a problem. What I want to happen is after the computer has generated the random number (in the script) I want that number to display right after agility. Sorry this is vague, but I wasn't sure how to explain what I wanted.
<html>
<body>
<h4> Agility </h4>
<script>
function rollAFunction() {
document.getElementById("diceARoll").innerHTML = Math.floor(Math.random() * 20 + 1)
}
</script>
</body>
</html>



<h4>.