I need to select any random value from the below sample json every time i run the code. How can i achieve this in Karate? I need to get any random value and use in another feature file.
def myJson =
"""
{
"sampleJson": {
"random1": "1",
"random2": "2",
"random3": "3",
"random4": "4",
"random5": "5"
}
}
"""