int [] n = { 2, 3, 4, 5, 6, 7}; int many = 6; void setup() { size(600,600); } void draw() { background(255); fill(0); text(n[5], 10, 20); float x=10,y=20; for(int many ) { text(n[0],x,y); y+= 20; } void keyPressed() { if(key == 'q') { exit(); } }