#!/usr/bin/env ruby s = "" alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"] (0).upto(1000) { n = Random.rand(10) w = alphabet.sample(n).join("") s += w+" " } puts s