//Dennis Malcolm int count = 1; // the number of Balls Ball[] balls = new Ball[count]; // array will hold all of our Balls Paddle[] Paddle = new Paddle[count]; void setup() { frameRate(30); size(500, 500); // populate the array with instances of the Ball class for (int i=0; i