how do you add to a specific group in the address book?

This script will add a person to the address books main directory. Does anyone know how to add to a specific Group named “webpage” in the directory?

tell application "Address Book"
	set the_person to (make new person with properties {first name:"bob", last name:"jones"})
		
end tell

here it is

tell application "Address Book"
   set the_person to (make new person with properties {first name:"bob", last name:"jones"})
       add the_person to group "XXX"
end tell