How to store same name inputs using Insert a record on another table

I have very simple form:
<form action="" method=“post” >
<td><input name=“field1[]” value="" ></td>
<td><input name=“field2[]” value="" ></td>
<td><input name=“field3[]” value="" ></td>
<td><input name=“field1[]” value=""></td>
<td><input name=“field2[]” value=""></td>
<td><input name=“field3[]” value=""></td>
<td><input name=“field1[]” value=""></td>
<td><input name=“field2[]” value=""></td>
<td><input name=“field3[]” value=""></td>
<button type=“submit” id=“submit” name=“submit” > Go </button>
</form>

My question is how can I store it in a table using ‘Insert a record on another table’ SC9 function?