Add bitmapText to group

Hi, is there any easy way to create text fields inside a group? In Phaser 2, I could use the last parameter, something like this:

myText = this.add.bitmapText(x, y, "fontKey", "someTextHere", fontSize, groupName)

It does not work now. I can add it like you see below, but it requires new line of code for each text field, and I have many of them.

this.myGroup.add(text)

You have to use group.add(…) or group.addMultiple(…).

Thanks for the info