What is the correct syntax for calling an instance method on a class named Game?
my_game = Game(self) my_game.roll_dice(self)
my_game = Game() my_game.roll_dice()
my_game = Game() self.my_game.roll_dice()
my_game = Game(self) self.my_game.roll_dice()