Angular dynamic form problem

 profileForm = this.fb.group({
    firstName: [""],
    lastName: [""],
    address: this.fb.group({
      street: [""],
      city: [""],
      state: [""],
      zip: [""]
    }),
  });

if the initial structure is like this
I want to dynamically write addControl into adress

is not this.profileForm.address.addControl ()

Dec.01,2021
Menu