Nested arrays in arrays with a specific repetition of values

[
    {
        "id": 1,
        "user": "user name",
        "data": [
            [{
                "value": 608,
                "label": "Videos"
            },
            {
                "value": 341,
                "label": "Total"
            }],
            [{
                "value": 126,
                "label": "Unique"
            },
            {
                "value": 802,
                "label": "Shared"
            },
            {
                "value": 564,
                "label": "Length"
            }]
        ]
    },
    {
        "id": 2,
        "user": "user name #2",
        "data": [
            [{
                "value": 453,
                "label": "Videos"
            },
            {
                "value": 7657,
                "label": "Total"
            }],
            [{
                "value": 234,
                "label": "Unique"
            },
            {
                "value": 98,
                "label": "Shared"
            },
            {
                "value": 9089,
                "label": "Length"
            }]
        ]
    }
]

Hi everyone!
Having a bit of trouble with nested arrays, I can’t replicate the structure above (see data). The label should repeat in sequence but the values should be random. Please help! :slight_smile:

Anyone? Is this possible to do?

I guess this exactly fits your requirement
check this out