Let's say I have a function which searches an array for a specific number.
I also have a two-dimensional array which I will fill with random numbers that has 10000 rows and 50 columns, otherwise known as Arr[10000][50].
I want to pass that array into the function 10000 times, each time searching every column of a particular row. How do I pass it through, or specifically how do I set up the prototype and how do I call the function?