I have 2 different arrays and I need help printing both of them
Route = ["Bus A","Bus B","Bus C","Bus D","Bus E","Bus F"]
DaysLate = [ [1],[2],[3],[4],[5],[6] ]
is there a way I can get this output?
Bus A 1
Bus B 2
Bus C 3
Bus D 4
Bus E 5
Bus F 6