so i have these three arrays:
var a = ["one", "two", "three"];
var b = ["a", "b", "c"];
var c = ["1", "2", "3"];
i want to combine them like so:
var d = [
["one", "a", "1"],
["two", "b", "2"],
["three", "c", "3"],
];
how do i do this? I know i need a foor loop but i cant seem to understand how to set it up. Thanks for any answers!