以下のコードで、`with_index(1)`の引数`1`の意味は何ですか? ```ruby fruits = ["りんご", "バナナ"] fruits.each.with_index(1) do |fruit, i| puts "#{i}: #{fruit}" end ```