//Build a random online comic
internet.go(“google.com”); //go to Google
google.search(“Online Comics”, images); //search images for online comics
comic = google.results(math.random()); //choose random comic
text.strip(comic); //strip text
show(comic);
boxes = [];
for (counter = 0; counter<10; counter++)
{
word = dictionary.choose(math.random())
word.add(boxes)
}
show(boxes); //add 10 random words to screen
if (word.clicked)
{
word.add
text.next
} //if a word is clicked, add it and move to next word
Leave a Reply