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