Assuming an application has an exception object named ex, which of the following statements would cause the exception's default error message to be displayed in a message box?
1) MessageBox.Show(ex.Message);
2) MessageBox.Show(ex.ToString());
3) MessageBox.Show(ex.StackTrace);
4) MessageBox.Show(ex.InnerException.Message);