int[] myMethod()
   {
   // ...
   int[] r = new int[3];
   r[0] = ans0;
   r[1] = ans1;
   r[2] = ans3;
   return r;
   }
// end myMethod