I have a problem to combining array to multidimensional array.
My Array
['Fiat', 'black', 'new', 'BMW', 'white', 'new']
The result should look like this
[['Fiat'], ['black'], ['new'], ['BMW'], ['white'], ['new']]
What do I have to do to achieve this result?
I am newbie. Please help.