Ordenação de threads para execução na ordem em que foram criados / iniciados

Como posso solicitar tópicos na ordem em que foram instanciados, por exemplo. como posso fazer com que o programa abaixo imprima os números 1 ... 10 em ordem.

public class ThreadOrdering {
    public static void main(String[] args) {

        class MyRunnable implements Runnable{
            private final int threadnumber;

            MyRunnable(int threadnumber){
                this.threadnumber = threadnumber;
            }

            public void run() {
                System.out.println(threadnumber);
            }
        }

        for(int i=1; i<=10; i++){
            new Thread(new MyRunnable(i)).start();
        }
    }
}

questionAnswers(10)

yourAnswerToTheQuestion