admin
class ArrayDemo { public static void main(String[] args) { int[] anArray; anArray = new int[130]; System.out.println(anArray.length); } }