for-each loop in Java

The syntax of the Java for-each loop is:
```
for(dataType item : array) {
    ...
}
```
Here,
* array - an array or a collection
* item - each item of array/collection is assigned to this variable
* dataType - the data type of the array/collection