<h1>Profile</h1> <table> <thead> <tr> <th>Name</th> <th>Age</th> <th>Course</th> </tr> </thead> <tbody> <% @facebook_compiler.each do |fb| %> <tr> <td><%= fb.name %></td> <td><%= fb.age %></td> <td><%= fb.course %></td> </tr> <% end %> </tbody> </table>