xxxxxxxxxx
34
let counter = 0;
var adjectives = ['helpless', 'fat', 'angry', 'hungry'];
var colors = ['white', 'black', 'yellow'];
var animals = ['horse', 'gazelle', 'mouse', 'rat'];
var actions = ['jumps over', 'runs around', 'high-fives'];
function setup() {
createCanvas(400, 400);
textSize(24);
frameRate(0.25);
bgColor = color( random(255), random(255), random(255) );
}
function draw(){
background(bgColor);
var adjectiveOne = random(adjectives);
var colorOne = random(colors);
var animalOne = random(animals);
var action = random(actions);
var adjectiveTwo = random(adjectives);
var animalTwo = random(animals);
var sentence = 'The ' + adjectiveOne + ' ' + colorOne + ' ' + animalOne +
' ' + action + ' the ' + adjectiveTwo + ' ' + animalTwo + '!';
text(sentence, 10, 5, width, height);
if (counter < 1) {
bgColor = color(random(255), random(255), random(255));
counter = 0;
}
}