If the GetMessage() method returns “Greetings from Earth!”,…

If the GetMessage() method returns “Greetings from Earth!”, what message is displayed after these statements are executed?var message = data.GetMessage();if (message is not null && message is string s){    MessageBox.Show(s);}else{    MessageBox.Show(“No message received.”);};