Java - Arrays
What will be the output of the following code?
int[] arr = {5, 10, 15};
for(int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}