// array of objects class Rect { private int w; private int h; public Rect(int w, int h) {this.w = w; this.h = h;} public int getArea() { return w*h; } } public class arrayOfObjects { public static void main(String[] args) { final int SIZE = 3; int i = 0; Rect[] r = new ____________________ ; // Make lots of Rects of various sizes: for(i=0 ; i < SIZE ; i++) // Find total area for all created Rects: int area = 0; for(i=0 ; i < SIZE ; i++) System.out.println("Total area: " + _______ ); } } // output: The total area is 20.