What would be the result after the following code is executed? final int SIZE = 25; int[] array1 = new int[SIZE]; // Code that will put values in array1 int value = array1[0]; for (int a = 0; a < array1.length; a++) { if array1[a] < value; { value = array1[a]; } }