以下のコードの実行結果はどうなりますか? ```ruby prices = [100, 200, 300] result = prices.map { |price| price * 0.8 } puts result.inspect ```