配列の全要素を処理するfor文で、条件部分に適切なものはどれですか? ```javascript const arr = ['a', 'b', 'c']; for (let i = 0; ______; i++) { console.log(arr[i]); } ```