以下のコードを実行したときの結果として正しいものはどれですか? ```ruby class Product TAX_RATE = 0.1 end Product::TAX_RATE = 0.08 puts Product::TAX_RATE ```