xxxxxxxxxx
19
let fruits = [
"pear",//position 0
"orange",//poisition 1
"apple",//position 2
"tomato",
"grapes"
];
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
for (let i = 0; i < fruits.length; i = i+1){
text(fruits[i], random(width), random (height));
}
}