In order to test a program I wrote these statements:
public class asdf{
  public static void main(){
    int arr[] = new int[5];
    System.out.println(arr);
  }
}
The output I got was:
[I@1df6ed6
Is this a garbage value or something different?
 
     
    