local ordinals = {"first", "second", "third", "fourth", "fifth", "sixth"}
for _ = 1, 6 do
print(ordinals[math.random(1, #ordinals)])
end