Here is my situation. I have 2 Arrays
@names = ["Tom", "Harry", "John"]
@emails = ["tom@gmail.com", "h@gmail.com", "j@gmail.com"]
I want to combine these two into some Array/Hash called @list so I can then iterate in my view something like this:
<% @list.each do |item| %>
<%= item.name %><br>
<%= item.email %><br>
<% end %>
I'm having trouble understanding how I can achieve this goal. Any thoughts?