//starter code- its up to you to work out the bugs (Endi!) and finish the code import java.util.Scanner; public class SearchSort { static Scanner input=new Scanner(System.in); static int[] arrayNums=new int[20]; static void fillArray(){ } static void bubbleSort(){ } public static void main(){ int choice; while(true){ System.out.println("\nEnter a choice from this menu:"); System.out.println("1. Fill and display an array"); System.out.println("2. Bubble Sort Array"); System.out.println("3. Selection Sort Array"); System.out.println("4. Perform a linear search on array"); System.out.println("5. Exit"); choice=input.nextInt(); switch(choice){ case 1: fillArray(); break; case 2: bubbleSort(); break; case 3: //selectionSort(); break; case 4: //linearSearch(); break; case 5: System.out.println("Bye!"); System.exit(0); } } } }