以下のコードで間違っている部分はどれですか? ```ruby class Game def self.start puts "ゲームを開始します" end def self.stop puts "ゲームを終了します" end end game = Game.new game.start ```