Which choice is an incorrect way to render a partial?
<%= render('shared/product', :collection => @products) %>
<%= render(template: 'shared/product', with: @products) %>
<%= render(:partial => 'shared/product') %>
<%= render('shared/product', locals: { product: @product }) %>