xxxxxxxxxx
23
// Create an array flowers
let flowers = ["Rose", "Daisy", "Tulip"];
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
// Draw the first name.
fill('red');
text(flowers[0], 200, 50);
// Draw the second name.
fill('green');
text(flowers[1], 200, 100);
// Draw the third name.
fill('blue');
text(flowers[2], 200, 150);
}