What's true about for loops?

A for loop runs for a specified number of timesFor loops use counter variablesFor loops run foreverA for loop is like a while loop but it runs at least once

Perfect! A for loop repeats a code block for a specified number of times, which is determined by its counter variable.

Whoops! A for loop repeats a code block for a specified number of times, which is determined by its counter variable.