I have a Array like below
val a1 = Array("a","b","c")
var a2= Array("Apple","Box","Cat")
var a3= Array("Angel","Ball","Count")
I can use zip function to make a tuple of two. But how can I get a result like below?
Array(("a","Apple","Angel"),("b","Box","Ball"),("c","Cat","Count"),)