I'm still new to programming and I want to make a program that will take the food order from user until the user presses "n" to stop. But I can't seem to make it work like I want it to.
I want my output to be like this.
Buy food: Burger
Order again(Y/N)? y
Buy Food: Pizza
Order again(Y/N)? n
You ordered: 
Burger
Pizza
But my output right now is this.
Buy food: Burger
Order again(Y/N)? y
Buy food: Pizza
Order again(Y/N)? n
You ordered: 
Exception in thread "main" java.lang.NullPointerException: Cannot invoke "Array.getFoodName()" because "food_arr2[i]" is null
    at Food.main(Food.java:50)
Here is my code:
public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        Food food = new Food();  
        Array[] food_arr;
        boolean stop = false;
        String foodName;
        int k = 1;
        int j = 0;
        
        while(stop == false) {
            food_arr = new Array[k];
            System.out.print("Buy food: ");
            foodName = s.next();
            food_arr[j] = new Array(foodName);
            food.setFoodArray(food_arr);
            System.out.print("Order again(Y/N)? ");
            String decide = s.next();
            if(decide.equalsIgnoreCase("y")) {
                k++;
                j++;
            }
            else if(decide.equalsIgnoreCase("n")) {
                stop = true;
            }
        }
        Array[] food_arr2 = food.getFoodArray();
        for (int i = 0; i < food_arr2.length; ++i) {
            System.out.println("\nYou ordered: ");
            System.out.println(food_arr2[i].getFoodName()); //This line is the error according to my output
        }
    }
I don't know how to fix this and I was hoping for someone to help me.
 
    