I am trying to iterate over three lists at the same time and reference them in each iteration of the loop if that makes sense... however I can't find a simple way to do this...
For example
let list1 = [1,2,3,4];
let list2 = [2,4,3,1];
let list3 = [6,53,7,3];
for (x, y, z) in list1, list2, list3 {
//do stuff
}
where x would refer to items in list1, y to list2, etc.