getChild

Hello, How can i find object and get his child

cList = new GameObject[transform.transform.Find("Test").childCount];
            for (int i = 0; i < transform.transform.Find("Test").childCount; i++)
                cList[i] = transform.GetChild(i).gameObject;

Solved