diff --git a/java.html.markdown b/java.html.markdown
index cdcf620c..a2fc3630 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -210,7 +210,19 @@ public class LearnJava {
//Iterated 10 times, fooFor 0->9
}
System.out.println("fooFor Value: " + fooFor);
-
+
+ // For Each Loop
+ // An automatic iteration through an array or list of objects.
+ int[] fooList = {1,2,3,4,5,6,7,8,9};
+ //for each loop structure => for(