How would one randomize data in a view? The below code currently displays meals in the order they were entered into the DB.
e.g.
<% @meals.each do |r| %>
<div class = "col-md-4">
<div class = "rest-box">
<center><%= image_tag r.meal_photo.url(:medium) %></center>
</div>
</div>
<% end %>