Lesson 2 focuses on arrays, loops, and conditions. C++ is very similar to Java in regards to these concepts, so the lesson went by very quickly. I did stumble across one totally new concept to me.
for (int cnt1 = 0, int cnt2 = 9; cnt1 < 10; ++cnt1, --cnt2){ //do stuff}