How does these lines of codes (int the sort method) effect the first req... don't understand pls help :) int temp = Integer.MIN_VALUE; for (int i = 0; i<20; i++){ for (int j = i + 1; i<20; j++){ if (array[i] < array[j]){ temp = array[i]; array[i] = array[j]; array[j] = temp; } }