array declarations in java code example
Example 1: arrays in java
int[] intArray = new int[20];
String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
Example 2: how to crate an array of integers in java
int[] intArray = new int[]{ 1,2,3,4,5,6,7,8,9,10 };