配列を逆順で処理するfor文の条件式として正しいものはどれですか? ```javascript const arr = [1, 2, 3, 4, 5]; for (______) { console.log(arr[i]); } ```