How to spawn randomly an actor?

So I have 2 actors and I want to spawn them randomly, so I have set a spawn point and I want each time the action is done, the game choose the Actor A or the Actor B to spawn.
I don’t find any way to do that, here is a screenshot :

And here is what I want to do :

I don’t know if it’s well explained, I just want the engine to choose to spawn the A class or the B class randomly.

This will give you a 50/50 chance:

could also use switch on int node paired with a random int in range node. this will allow you to use more outputs.

alternatively you could just have an array which holds all the classes you want to spawn then get a random int between 0 and the last index. then use that random int to get that index from the array. i show an example of this in the picture below.