Cómo elegir a un niño al azar en una unuidad de GameObject

public GameObject YourGameObject;

int randomChildIdx = Math.Random(0, YourGameObject.transform.childCount);
Transform randomChild = YourGameObject.transform.GetChild(randomChildIdx);
Obnoxious Oystercatcher