以下のコードで、`divide(10, 0)`を実行したときの結果はどうなりますか? ```ruby def divide(a, b) begin a / b rescue puts "計算エラーが発生しました" -1 end end result = divide(10, 0) ```