Randomly replace the values captured from FindAll in subsequent requests.

Hello All,

I am new to Gatling and interested in knowing how to replace the captured list of values randomly in subsequent request.

`

.check(regex(""".*""")
.findAll
.saveAs(“ComputerNumber”))

`

In above code, I am capturing all the values in “ComputerNumber” and response contains multiple value. So the gatling will save the response in List like below.

`

ComputerNumber → List(381, 501, 500, 388, 355, 385, 313, 384, 382, 383)

`

From above result, how can I randomly select some number and replace it in subsequent request?

findRandom