Random Rand = new Random();
int randomint = Rand.Next(0, 1);
if(randomint == 0){
//Do something
}else{
//Do the other thing
}
Like @AlexanderK. said, you can do this in one callout with the help of random integers. If you just want the endings to be different you can use the code above