<html><head><title>random numbers</title><script>functiondisplay(){document.getElementById('numbers').textContent=numbers.join(' ');}</script></head><bodyonload="display()"><p>Some random numbers between 0 and 100:</p><!-- Placeholder for the list of random numbers --><pid="numbers"></p><script>numbers=[];while(numbers.length<100){numbers.push(Math.round(Math.random()*100));}</script></body></html>