I've been experimenting with the Fibonacci sequence and had the idea to first add than subtract than add than subtract...
So if we start with $1, 1$ we get:
$1, 1, 2, -1, 1, ...$
This sequence is $12$ numbers long(it repeats after that). And I wondered: Why is it $12$? That's my question.
I'm sorry that I ask such a stupid question but I just can't find the answer.

So if the sequence is $a_n$ you're taking $a_{n} = a_{n-2} + (-1)^n a_{n-1}$. If you start with arbitrary $a_0$ and $a_1$ you'll get $a_6 = -a_0$ and $a_7 = -a_1$, and then $a_{12} = - a_6 = a_0$ and $a_{13} = -a_7 = a_1$, and from there it repeats.
Another way of looking at it is with linear algebra. If $X_n = \pmatrix{a_{n+1}\cr a_{n}}$, for the Fibonacci sequence you have $X_{n+1} = \pmatrix{1 & 1\cr 1 & 0} X_n$. For your sequence you have $X_{n+1} = \pmatrix{1 & 1\cr 1 & 0\cr} X_n$ if $n$ is even and $\pmatrix{-1 & 1\cr 1 & 0\cr} X_n$ if $n$ is odd. Thus when $n$ is even $$X_{n+2} = \pmatrix{-1 & 1\cr 1 & 0\cr}\pmatrix{1 & 1\cr 1 & 0\cr} X_n = \pmatrix{0 & -1\cr 1 & 1\cr} X_n$$ and $\pmatrix{0 & -1\cr 1 & 1}^6 = I$.