I'm trying to merge two arrays into one array consisting of objects created from the corresponding array items from the two original arrays:
Ex:
words = ['Toolbar', 'Vamoose', 'Arcade'];
clues = ['Strip of buttons', 'Get lost', 'Pinball wizards hangout'];
What I want:
output = [{'Toolbar', 'Strip of buttons'}, {'Vamoose', 'Get lost'}, {'Arcade', 'Pinball wizards hangout'}]
Any suggestions?