What is the method identifier in the following method definition?

public int add3Ints(int a, int b, int c)
{
    return a + b + c;
}
add3Ints
  • public
  • int
  • return
  • a + b + c

There are no hints for this question