Hi all, I have the following peace of code: arr = [5, 5, 2002] date = Date.new(arr[2].to_i, arr[1].to_i, arr[0].to_i) I need to convert the String elements in the array into int. I want to do that with to_i, but this method returns me a Fixnum, thus I couldn't fill my date Object... Any suggestions? -- Posted via http://www.ruby-forum.com/.