blob: 7248dccf8d85ac3a5420e8702a0abc6a2741f8ab [file] [log] [blame]
<html>
<head>
<title>random numbers</title>
<script>
function display() {
document.getElementById('numbers').textContent = numbers.join(' ');
}
</script>
</head>
<body onload="display()">
<p>Some random numbers between 0 and 100:</p>
<!-- Placeholder for the list of random numbers -->
<p id="numbers"></p>
<script>
numbers = [];
while (numbers.length < 100) {
numbers.push(Math.round(Math.random() * 100));
}
</script>
</body>
</html>