guess the error/exception generated in this code:
//code
1

ublic class Base{
2:
3: int array[];
4:
5: private void
test() {
6: System.out.println("Value is: " + array[0]);
7: }
8:
9: static public void main(
String[] a) {
10: new Base().test();
11: }
12:
}
//code end
i wasn't exactly expecting this exception. any comments....