Referencing arrays

int [] arr = new int [5], other = null;
other = arr;
What will be other.length in the above snippet?