Yes. The foreach loop will iterate through the list in the order provided by the iterator()
method. See the documentation for the Iterable interface.
If you look at the Javadoc for List you can see that a list is an "ordered collection" and that the iterator()
method returns an iterator that iterates "in proper sequence".