public class QuestionBank {

    //array of question

    private  String textQuestion[] = {
            "What year was the DOI signed?",
            "What saved the capitol during the War of 1812?",
            "Who was the 2nd President of the US?",
            "Who was mainly involved in the corrupt bargain?"
        };

    // multiple choice for each question

    private String multipleChoice[][]= {
            {"1776","1729","1830"},
            {"Tornado","Earthquake","Thunderstorm"},
            {"John Adams","Thomas Jefferson","Benjamin Harrison"},
            {"Abraham Lincoln","John Quincy Adams","Ulysses S. Grant"},

    };

    // arraqy of correct question answer
    private String mCorrectAnswer[] = {"1776", "Thunderstorm", "John Adams", "John Quincy Adams"};

    //method for get number of question
    public int getLength(){
        return textQuestion.length;
    }

    public String getQuestion(int a){

        String question = textQuestion[a];
        return question;
    }

    //return single multiple choice item int list 1 2 3 4 as an argument
    public String getChoice(int index, int num){
        String choice = multipleChoice[index][num-1];
        return choice;
    }

    public String getCorrectAnswer(int a){
        String answer = mCorrectAnswer[a];
        return answer;
    }



}
/ imports allow you to use code already written by others.  It is good to explore and learn libraries.  The names around the dots often give you a hint to the originator of the code.
import java.util.Scanner; //library for user input
import java.lang.Math; //library for random numbers
public class Menu {
    // Instance Variables
    public final String DEFAULT = "\u001B[0m";  // Default Terminal Color
    public final String[][] COLORS = { // 2D Array of ANSI Terminal Colors
        {"Default",DEFAULT},
        {"Red", "\u001B[31m"},
        {"Green", "\u001B[32m"},
        {"Yellow", "\u001B[33m"},
        {"Blue", "\u001B[34m"},
        {"Purple", "\u001B[35m"},
        {"Cyan", "\u001B[36m"},
        {"White", "\u001B[37m"},
    };
    // 2D column location for data
    public final int NAME = 0;
    public final int ANSI = 1;  // ANSI is the "standard" for terminal codes
    // HashMap<Integer, String> hMapNumbers = new HashMap<Integer, String>();
    //     hMapNumbers.put(1, "One");
    //     hMapNumbers.put(2, "Two");
    //     hMapNumbers.put(3, "Three");
    public final String[][] QUESTIONS = { // 2D Array of ANSI Terminal Colors
        {"What year was the DOI signed?", "1776"},
        {"What saved the capitol during the War of 1812?", "Thunderstorm"},
        {"Who was the 2nd President of the US?", "John Adams"},
        {"Who was mainly involved in the corrupt bargain?", "John Qunicy Adams"},
    };
    // 2D column location for data
    public final int TITLE = 0;
    public final int VALUE = 1;  // ANSI is the "standard" for terminal codes
    // Constructor on this Object takes control of menu events and actions
    public Menu() {
        Scanner sc = new Scanner(System.in);  // using Java Scanner Object
        this.print();  // print Menu
        boolean quit = false;
        while (!quit) {
            try {  // scan for Input
                int choice = sc.nextInt();  // using method from Java Scanner Object
                System.out.print("" + choice + ": ");
                quit = this.action(choice);  // take action
            } catch (Exception e) {
                sc.nextLine(); // error: clear buffer
                System.out.println(e + ": Not a number, try again.");
            }
        }
        sc.close();
    }
    // Print the menu options to Terminal
    private void print() {
        //System.out.println commands below is used to present a Menu to the user.
        System.out.println("-------------------------\n");
        System.out.println("Choose from these choices");
        System.out.println("-------------------------\n");
        System.out.println("1 - Say Hello");
        System.out.println("2 - Output colors");
        System.out.println("3 - Loading in color");
        System.out.println("4 - History Quiz");
        System.out.println("0 - Quit");
        System.out.println("-------------------------\n");
    }
    // Private method to perform action and return true if action is to quit/exit
    private boolean action(int selection) {
        boolean quit = false;
        switch (selection) {  // Switch or Switch/Case is Control Flow statement and is used to evaluate the user selection
            case 0:
                System.out.print("Goodbye, World!");
                quit = true;
                break;
            case 1:
                System.out.print("Hello, World!");
                break;
            case 2:
                for(int i = 0; i < COLORS.length; i++)  // loop through COLORS array
                    System.out.print(COLORS[i][ANSI] + COLORS[i][NAME]);
                break;
            case 3:
                System.out.print("Loading...");
                for (int i = 0; i < 20; i++) {  // fixed length loading bar
                    int random = (int) (Math.random() * COLORS.length);  // random logic
                    try {
                        Thread.sleep(100);  // delay for loading
                    } catch (Exception e) {
                        System.out.println(e);
                    }
                    System.out.print(COLORS[random][ANSI] + "#");
                }
                break;
            case 4:
                for(int i = 0; i < QUESTIONS.length; i++)  // loop through COLORS array
                    System.out.print(QUESTIONS[i][TITLE]);
                for(int i = 0; i < QUESTIONS.length; i++)  // loop through COLORS array
                    System.out.print(QUESTIONS[i][VALUE]);
                // hMapNumbers.entrySet().forEach( entry -> {
                //     System.out.println( entry.getKey() + " => " + entry.getValue() );
                // });
                break;
            default:
                //Prints error message from console
                System.out.print("Unexpected choice, try again.");
        }
        System.out.println(DEFAULT);  // make sure to reset color and provide new line
        return quit;
    }
    // Static driver/tester method
    static public void main(String[] args)  {
        new Menu(); // starting Menu object
    }
}
Menu.main(null);
white_check_mark
eyes
raised_hands
-------------------------

Choose from these choices
-------------------------

1 - Say Hello
2 - Output colors
3 - Loading in color
4 - History Quiz
0 - Quit
-------------------------

4: What year was the DOI signed?What saved the capitol during the War of 1812?Who was the 2nd President of the US?Who was mainly involved in the corrupt bargain?1776ThunderstormJohn AdamsJohn Qunicy Adams