could someone please explain how the enhanced for loop in the code below would look if it was represented by a standard for loop? ex for(int loop = 0; loop < ____; loop++) etc. I am trying to understand what the enhanced for loop does but want to see how it is represented in a standard for loop.
public static void main(String[] args) {
    // get the list of each winning team by year
    ArrayList<String> allWinners = readAndPopulateWinnersList();
    int startYear = 1956;
    for(String teams : allWinners) {
        System.out.println(startYear++ + " : " + teams);
    }
    
    }
 
    