Methods with Arrays
Hello, I am having some trouble trying to figure out how to call a method with arrays instantiated such as:
public static int readProducts(String[] products, double[] prices, int[] quantities){
We have never done method calling that has arrays in it and don't know how to set up the main method.
Whatever I put within the parenthesis in the readProducts(), i get an error saying I cant use a primitive data type to refer to the method with arrays. Any comments would be helpful. Thank you.

