math.random and clone code example
Example: math.random and clone
local Children = game.ReplicatedStorage:GetChildren()
local AmountOfChildren = #Children
local RandomPositionInArray = math.random(1, AmountOfChildren)
local RandomChild = Children[RandomPositionInArray]