Is there any thing available in Flowable Lib to sort Json array based upon time?

For Example
Input:
[{
“id”:“3”,
“car”:“Audi”,
“state”:“TX”,
“launch_time”:“2022-07-14 05:00:00”
},
{
“id”:“4”,
“car”:“Ford”,
“state”:“CA”,
“launch_time”:“2022-07-12 05:00:00”
},
{
“id”:“5”,
“car”:“Kia”,
“state”:“NY”,
“launch_time”:“2022-07-13 05:00:00”
}]

Expected Output:
[{
“id”:“4”,
“car”:“Ford”,
“state”:“CA”,
“launch_time”:“2022-07-12 05:00:00”
},
{
“id”:“5”,
“car”:“Kia”,
“state”:“NY”,
“launch_time”:“2022-07-13 05:00:00”
},
{
“id”:“3”,
“car”:“Audi”,
“state”:“TX”,
“launch_time”:“2022-07-14 05:00:00”
}]

The easiest would be to use a script task with for example a groovy script to do this.