function poem(e){ var i = 0; var p = " "; while (true) { for(count = 0; count < 5; count++){ document.write("
" + p + "this is it"); i++; if (i==e) { document.write(p + p + " what is it?") } } document.write(p + p + p + p + p + p + i); } } var now = new Date(); var unix = now.getTime(); var e = Math.round(unix/1000/86400); poem(e)