Create a function that takes both a string and a list of integers and rearranges the letters in the string to be in the order specified by the index numbers. Return the "remixed" string.
remix("abcd", [0, 3, 1, 2]) ➞ "acdb"
The string you'll be returning will have:
... because the order of those characters maps to their corresponding numbers in the index list.
remix("PlOt", [1, 3, 0, 2]) ➞ "OPtl"
remix("computer", [0, 2, 1, 5, 3, 6, 7, 4]) ➞ "cmourpte"