else if (selection == 16)
{
int bubbleCount = 0;
for(bubbleCount = 0; bubbleCount < arraySize; bubbleCount++)
{
if (theArray[bubbleCount] > theArray[bubbleCount+1])
{
swap(theArray[bubbleCount], theArray[bubbleCount+1]);
}
}
}
else if (selection == 16)
{
int bubbleCount