From: Wally T Terrible Date: 2008-02-18T04:03:39+09:00 Subject: Re: displaying user inputed arrays I'm not entirely sure what you intend to do. If you wanted to get five separate words and then put them into an array: words_group = [] while i<5 new_word = gets.chomp words_group<< new_word i = i +1 end print words_group or if you wanted to get all five words on the same line: word_group = [] words_group = gets.chomp.split(" ") print words_group and to print them (word_group.length).times {|i| print words_group[i]," "} Isaac Toothyxdip wrote: > [code] > > puts "Ok now enter in 5 words, just be sure there are spaces inbetween > them" > > i = 0 > while i < 5 > words_group = gets["","","","",""] > print "#{words_group[i]}" > i =+ 1 > end > > [/code] > > What im trying to do is ask the user to input some words and display > them using arrays (learning program) i know you could do this easy other > ways but im trying to do it with arrays. What needs to be changed? > > THanks in advance >