Pre defined arrays declaring
Int[] listIntNumbers = {7, 5, 4, 3, 2, 1};
An array of int called listIntNumbers starting with 7,5,4,3,2,1
Double [] listRealNums = {0.1, 2.2, 4.5, 3.3};
An array called listRealNumbers containing 0.1, 2.2, 4.5, 3.3
String [] listWords = {"hello", "goodbye", "welcome"};
The values hello goodby welcome stored in an array of strings called listWords