public int[] twoSum (int[] numbers, int target) { int[] answer=new int[2]; for(int i=0;i<numbers.length;i++){  ...