Using a collection for navigation.
I have a collection that gives me the order in which I want users to navigate through my app screens by hitting the next button.
The inital button click, goes to the first item/screen in the collection (screen 11 in the image). Then I want to the next button to navigate to the second item/screen in the collection (screen 6). As you hit the next button, I would like to navigate to the remainder of the screens in the collection: 15, 7, 5, 12, 3, 2, 10, 14....

The collection will shuffle each time so it needs to be dynamic. Any ideas? I appreciate any help.