I have these two arrays
Hotel = 'hilton', 'marriot'
Price = '$350', '$375'
How would I go about merging the two arrays together and making the price a key to the hotel.
So when I access
Price[0]
It outputs
'$350' => 'hilton' (or however the correct output should be)