How do RemoteEvents work sending multiple events simultaneously?

Let’s say if you have a simple script which sends some kind of data to all clients via using a loop and not :FireAllClients(). Because the server runs at 20Hz, would all of these requests get ‘grouped’ together?

Another example is probably better - let’s say it’s different events. One of them changes one value and another event which changes a different value. If they were both fired to the client using a script, one after the other - would they be grouped together under the 20Hz send/receive limit, so theoretically if all clients had the same ping, they would receive all requests at the same time?

Just a quick question I’m wondering about replication. I probably don’t need to worry about it but it’s good to know.

EDIT: Just realised I can test this. I’ll check now quick if I can.

EDIT 2: Tested it, and they do appear to arrive in order, yet at pretty much the same time aside from the very very slight delay between registering them. Feel free to ignore this post, I’ve found the answer I was looking for.