When I try to do this:
questions = Array.new
2.times do
question = Question.first(:order => 'random()')
questions << question
end
and inspect the element:
raise questions.inspect
It returns an array including two same objects, but I expect two different objects in my questions
array. What do I do wrong?