Your going to be out of bounds in the indexs and score arrays, if the user picks an amount on line 13 that is 9 or higher since you've declared those two as 10, which is 0 to 9.
Add cin.sync(); as a line right after line 16 to clear the input buffer. And you may want to raise all your arrays to be 100, so you don't go out of bounds on your arrays.