Refer https://karatelabs.github.io/karate/#loops
Here
* def fun = function(i){ return i * 2 }
* def foo = karate.repeat(5, fun)
* match foo == [1, 1, 1, 6, 8]
'foo' when mismatches with the first element, karate stops to match rest of the elements
What can be used here so as to compare all elements of two lists (index wise)