有如下程序,则下列程序的运行结果为:
public class test {
public static void main(String a[]) {
int arr[]=new int[10];
System.out.println(arr[1]);
}
}