Create the method stub for a void method called ingredients that takes in spaghetti, sauce, and meatballs as parameters where the parameters are all strings.
void ingredients(spaghetti, sauce, meatballs);
ingredients(spaghetti, sauce, meatballs);
ingredients(String spaghetti, String sauce, String meatballs);
void ingredients(String spaghetti, String sauce, String meatballs);