xxxxxxxxxx
13
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
//As long as ellipse X position is starting at 20, and also lower than 400, the program should repeat ellipse by adding 40 to i
for (let i = 0; i < 400; i=i+40){
//ellipse(i, mouseY, 20, 20);
text('bitches', i, mouseY);
}
}