What is the output of the following code? int[] myList = {1,… Questions Whаt is the оutput оf the fоllowing code? int[] myList = {1, 2, 3, 4, 5, 6}; for (int i = myList.length - 2; i >= 0; i--) { myList[i + 1] = myList[i];} for (int e: myList) System.out.print(e + " "); Show Answer Hide Answer