Remove the brackets from
[formArrayName]="areas"
and use only
formArrayName="areas"
This, because with [ ]
you are trying to bind a variable, which this is not. Also notice your submit, it should be:
(ngSubmit)="onSubmit(areasForm.value)"
instead of areasForm.values
.