Given the following url: http://example.com?arr[]=hello&arr[]=to&arr[]=you
Am I able to bank on the fact that:
params[:arr] == ['hello', 'to', 'you']
?
I ask because I have some additional data that will be sent with the request that needs to be mapped to each of the values in params[:arr].