Look at the following class definitions:Class Vegetable{    …

Look at the following class definitions:Class Vegetable{      Public virtual void Message()      {            MessageBox.Show(“I am a vegetable”);      }}Class Potato: Vegetable{      Public override void Message()      {            MessageBox.Show(“I am a potato”);      }}Given these class declarations. What will the following code display?Vegetable V = new Potato();Potato P = new Potato();V.Message();P.Message();