functionFormTest() { const {control, register, getValues} = useForm(); const {fields, append, prepend, remove, swap, move, insert} = useFieldArray({ control, // control props comes from useForm (optional: if you are using FormProvider) name: "test", // unique name for your Field Array });