Say I have 4 buttons. I want to have button 2 always swap out with another button, randomly. So, when the user taps button 2, it should swap with another button (randomly).
Now, button 2 is at the bottom right corner. So if the user taps button 2 again, it has the option to
swap with the other three buttons. How can I achieve this?
I have already tried to make an array of the four values:
top_right, top_left, bottom_right, bottom_left
And maybe try and eliminate the value from teh array that the button is on whenever it is clicked. I have been racking my brain for hours nowsuccessfully had them swap, but can't figure it outwas very memory inefficient, and took a while.

