以下のメソッドチェーンの実行結果はどうなりますか? ```ruby text = " Ruby; Python " result = text.strip.gsub(";", ",") puts result ```