I have this array :
[
0 => [
"Low" => "Few people"
]
1 => [
"Medium" => "Moderate"
]
2 => [
"High" => "Many people"
]
]
How can I make it like this:
[
"Low" => "Few people",
"Medium" => "Moderate",
"High" => "Many people",
]
(remove all indexes of array)
I already tested array_values but it doesn't work.
Thanks for your help !