What is the purpose of the code below?
int[] newArray = new int[10]; Arrays.fill(newArray, 42);
Copies the elements of another array into newArray
newArray
Sets all elements in newArray to the value 42
Checks if newArray is empty
Deletes all elements in newArray