# File lib/rfuzz/random.rb, line 55
55:     def words(count=1)
56:       raise "You need a dictionary." unless @dict
57:       w = ints(count, @dict.length)
58:       w.collect {|i| @dict[i]}
59:     end