Creating multiple child objects in a form

Hello,

I have a Response object and it has many answers. I would like to
create a
form that allows me to create a new Response object that has 5 Answer
objects. Can I do this using the form_for FormBuilder? I assume what I
want to generate is something like this:

And then I’m hoping that when it gets submitted to the controller, I can
do
response = Response.new(params[:response]) and response.answer will
contain
5 answer objects with each of their answer_value properties populated.