int[] {3,4}refers to a location , not an array, and contains an int. Your function should be
function(int me)
{
}
this is how you get the value and go to your function
int valueFromLocation = numbers[3,4];
function(valueFromLocation )
{
}
EDIT:
, Jagged Arrays
int[][] jaggedArray =
new int[2][] { new int[] {2,3,4}, new int[] {5,6,7,8,9} };
int[] array1 = jaggedArray[1];
int[] array1 = jaggedArray[2];
, .
function(int[] array){}