This must be a stupid question but I couldn’t find an object to do that. How can I multiply elements from list A with elements from list B preserving their position?
(0, 1, 2, 3, 4) * (a, b, c, d, e)
result --> (0a, 1b, 2c, 3d, 4e)
Is there a single object to do that?