Hey there, I'm looking to access a specific object in my JSON data by using an index. Can anyone guide me on how to do this? Here's a snippet of my JSON data:
[{
"rec": ["act1","act2","act3"],
"rec2": ["act11","act23","act4"]
}]
I'm aiming to retrieve the "rec2" object by passing the index 1. Any assistance would be greatly appreciated.