以下のコードを実行したとき、何が表示されますか? ```ruby class Product def initialize(name = "商品", price = 100) @name = name @price = price puts "#{@name}: #{@price}円" end end item = Product.new("りんご") ```