On Thu, Jun 4, 2009 at 1:08 PM, Luke Kyrchner <lynx557 / gmail.com> wrote: > Luke Kyrchner wrote: > Okay, I just figured one thing out: > Instead of putting .capitalize, you put .upcase > What I would like to know is how to put in a random sentence, like you > make 7 different sentences, how could you make the program put a > sentence at random instead of a date? Just a hint. 'daygs' used for "Snatch" reference :)... array = ["Ya like daygs?", "Do I like daygs?", "Yeah, d'ya like daygs", "Oh, 'do I like dahgs.'", "Yeah, I like dahgs."] puts array[rand(array.size - 1)] Todd