Por que a saída deste código 111111?

Este é o código. Tentei resolvê-lo, mas não consigo entender como a saída é 111111?

public class Test { 
      public static void main(String[] args) {
        int list[] = {1, 2, 3, 4, 5, 6};

        for (int i = 1; i < list.length; i++)
          list[i] = list[i - 1];

        for (int i = 0; i < list.length; i++)
          System.out.print(list[i] + " ");
      }
    }

questionAnswers(9)

yourAnswerToTheQuestion