Control checked checkbox

Hi guys, i don’t know how hundle checkbox input in a form i have this code:

{{activitie.nom}}

***** .ts*********
this.activites = this.getAllActivities();
this.profileForm = this.formBuilder.group({
nom: [‘med’, ],
prenom: [‘med’, ],
taille: 165.5,
poids: 57,
mes_activites: [],
club_plus_freq: [],
notification:1,
});

i get a list of activities from a backend and i put it in list of checkbox, i need to check the group of checked box, any solution to do that ?!
thnks