////Grace Hernandez Array Project 1///// int array=6; int b[ ] b= {3,7,2,12,5,6}; void setup () { size (400,400); reset (); } ///// Next Frame: Display numbers of array///// void draw() { float x=20 y=40; background (200,250,100); fill(0); textSize(24); } for() { text (b{0}, x, y); y+=20; } text( b{0}, x, y ); text( b{1}, x, y+20 ); text( b{2}, x, y+40 ); text( b{3}, x, y+60 ); text( b{4}, x, y+80 ); text( b{5}, x, y+100);