Do the field ids always come back in the order that they are answered?

I have a repeatable container of questions that for each repeat need to be grouped together. Since the field id does not change for each repeat, I am wondering if I can rely on the order to be consistent each time the data is pulled via webhook upon form completion. If the order is always correct then I can assume that the 2nd response for the field ids are all from the same repeated container. Here is a piece of the json:

"DevSponsorEmail1": [
    "dev.one@email.com",
    "dev.two@email.com",
    "dev.three@email.com"
  ],
  "DevSponsorName1": [
    "Dev One",
    "Dev Two",
    "Dev Three"
  ],
  "ParticipantEmail1": [
    "part.one@email.com",
    "part.two@email.com",
    "part.three@email.com"
  ],
  "ParticipantName1": [
    "Part One",
    "Part Two",
    "Part Three"
  ],

Hi @Grey

Yes! The naming of the fieldId relies on the order they were entered.