class Analyst { public static void main (String args[]) { Storage store = new Storage(); store.data[0] = new Point(); store.data[0].x = 10; store.data[0].y = 20; store.data[1] = new Point(); store.data[1].x = 15; store.data[1].y = 25; store.data[2] = new Point(); store.data[2].x = 17; store.data[2].y = 27; } }