I have a script on google sheets that calls an API and the response is an Array with multiple arrays, like this:
[[1,2,3], [4,5,6]...etc]
I'm trying to do something like trying to multiply the second element of each array by 2, while keeing the other elements. I have the whole array assigned to a variable but I can't figure out how to select the 2nd element of all arrays.