以下のコードの実行結果はどうなりますか? ```ruby score = 85 case score when 90..100 puts "S評価" when 80...90 puts "A評価" when 70...80 puts "B評価" end ```