I have a couple of arrays that contain strings that are kinda long so lets say I will use different ones just for example:
cars=("Toyota" "BMW" "Kia")
colors=("red" "blue" "green")
transmission=("manual" "manual" "automatic")
and I want to have something like this
| Cars | Colors | Transmission|
| ----------- | ----------- | ----------- |
| Toyota | red | manual |
| BMW | blue | manual |
| Kia | green | automatic |
What is the smartest way to do that? Preferably without using third party tools.