print the content of the arrays marked and edgeTo side by side in columns code example
Example: how to print two arrays together
var array = [1,2,3,4,5,6,7,8,9,10]
var brray = ["one","two","three","four","five","six","seven","eight","nine","ten"]
for( i = 0 ; i < array.length ; i++){
console.log(array[i], brray[i])