xxxxxxxxxx
66
let currentDate = new Date();
let date = currentDate.getDate();
let month = currentDate.getMonth();
let nouns = [
"pigeon",
"deer",
"goose",
"fox",
"cat",
"elephant",
"ram",
"crab",
"lion",
"bull",
"wolf",
"squirrel",
"dog",
"rat",
"ladybug",
"penguin",
"duck",
"giraffe",
"feline",
"crow",
"elm",
"rodent",
"calico",
"leopard",
"bee",
"worm",
"wombat",
"possum",
"aardvark",
"manatee",
"ant"
]
let adverbs = [
"swimmingly",
"deviously",
"expectantly",
"smoothly",
"willingly",
"hesitantly",
"quickly",
"swiftly",
"slowly",
"reluctantly",
"gradually",
"openly"
]
let state = 'start'
function setup() {
createCanvas(400, 400);
textAlign(CENTER);
}
function draw() {
background(220);
let sentence = "The " + nouns[date] + " moved " + adverbs[month];
text(sentence, width/2, height/2)
}