The second part of the for loop is the condition. Just like while, the for loop will execute as long as the condition is true.

That's it! The loop executes while the counter variable is less than or equal to 3.

Don't forget, we use the = sign to assign values, not to compare them.