static void Main(string[] args)
        {
            Rabbit rabbit = new Rabbit();

            rabbit.ThrowCarrot(); // throw one carrot.
            Rabbit bossRabbit = new BossRabbit();

            bossRabbit.ThrowCarrot(); // throw 3 carrots.
        }