Well the topic says it all.

Let's assume I have the following JSON-Object
{ "ID":"3" }
and I have an JSON-Array of thoose objects
[ {"ID":"1"}, {"ID":"2"} ]
I want to get
[ {"ID":"1"}, {"ID":"2"}, {"ID":"3"} ]

How do I do it ?