How do I make this script choose a random textlabel?

I haven’t scripted in awhile, But I’m trying to make the script choose a random Textlabel to make visible, But I haven’t been able to find a solution nor how to make it choose a random Textlabel to make visible from the BillboardGUI, which is very frustrating

A way is using math.random()

local Children = BillBoardGui:GetChildren()
local Label = Children[math.random(1,#Children)]

Oh right I totally forgot about that, thank youu