xxxxxxxxxx
16
// Create an array flowers
let flowers = ["Rose", "Daisy", "Tulip"];
function setup() {
createCanvas(400, 400);
// Use the special for loop to look at each element as a variable.
for (let flower of flowers) {
print(flower);
}
}
function draw() {
background(220);
}