Working with data in an array

Thanks for the help.

Almost there with this option.

My messages are one game per message, so all the info is in one array per message rather than multiple arrays per message (at least I think that's how I need to explain it)

So my input would be slightly different

This is mine

[
    "  england - premier league",
    "12 2021-10-31 14:00-norwic-leeds",
    "2435465768798975642858"
]

This is yours

[
    [
        "  england - premier league",
        "12 2021-10-31 14:00-norwic-leeds",
        "2435465768798975642858"
    ]
]

So the diff is as below

image

Sorry, I have no idea how to change your code to what I need for my input vs yours.