Como retornar 2 valores de um método Java?

Estou tentando retornar 2 valores de um método Java, mas recebo esses erros. Aqui está o meu código:

// Method code
public static int something(){
    int number1 = 1;
    int number2 = 2;

    return number1, number2;
}

// Main method code
public static void main(String[] args) {
    something();
    System.out.println(number1 + number2);
}

Erro:

Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - missing return statement
    at assignment.Main.something(Main.java:86)
    at assignment.Main.main(Main.java:53)

Resultado Java: 1

questionAnswers(13)

yourAnswerToTheQuestion