-- busybox doesnt have random sort?? f = io.open("words.txt") math.randomseed(os.time()) l = 462079 w={} for i = 1,l do table.insert(w,f:read()) end while true do print("-----") for i = 1,30 do print(w[math.floor(math.random()*l)]) end x =io.read() if x:sub(1,1) == "q" then break end end f:close()