//declare array: Type Flower (class) + name Garden // create the instance Array of 5 Flowers_specify the array size Flower [] garden = new Flower [5]; void setup(){ size(400,400); smooth(); // intialize array with a for loop: using variables: // i for the index of the array and garden(nameofarray).length for how big is our array for (int i = 0; i > store the value of the variable diameter before mouse interaction garden[i].diam = garden[i].diameter; println(garden[i].diam); println(garden[i].diameter); } } void draw(){ background(235); smooth(); // call function of class Flower through associating them with each index of array for (int i = 0; i