Display Created Rooms

Options
Guys hey everoyne,
I want to make a game that we can create room and display them in the lobby.

this is my launcher script(reletated codes):

public string roomName = "testRoom";
RoomInfo[] roomsList;
[SerializeField] public GameObject[] createdRooms;
.
.
.
.
public override void OnRoomListUpdate(List<RoomInfo> roomList)
{
for(int i=0; i<roomList.Count; i++)
{
// I show created roooms.
}
}

Gameobject of createdRooms are consiste of text and one button. Which refers of text of the Room and Join Button. How can I do this? Can you please help to me?