This is my code:
<% question.answers.each do |answer| %> <li><%= answer.content %></li> <% end %>
I want to arrange response objects randomly. What would be the most efficient way to do this, given the number of possible answers is less than 10?
source share