<html>
<head>
<meta http-equiv="refresh" content="4">
<script>
var aux = ["", "can", "don't", "must", "will", "won't"],
act = ["find", "know", "learn", "read", "say", "see"];
function pick(list) {
return list[~~(Math.random() * list.length)];
}
function phrase() {
var end = " it";
if (Math.random() < .3) {
end = " that " + phrase();
}
return "we " + pick(aux) + " " + pick(act) + end;
}
</script>
</head>
<body id=b style="margin: 20%" onload="b.innerHTML=phrase();">
</html>
About the author
Nick Montfort is a computational poet who has done online projects, artworks for exhibition, and computer-generated books, including the collaboration 2x6, Autopia, The Truelist (first in the Using Electricity series from Counterpath), and Hard West Turn. He is a professor of digital media at MIT.