i have following array
[{
"games1": [{
"playername": "1"
}]
},
{
"games2": [{
"playername": "1"
},
{
"playername": "2"
}
]
}
]
i want add new array playername2 at games1 how to push I want this type of result
"games1": [{
"playername": "1"
}, {
"playername": "2"
}