In the Fibonacci sequence, how does $0$ get to $1$?
$$ 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, \ldots$$
The rule is adding the previous $2$ numbers, and the previous $2$ numbers before $1$ are $0$ and $-1$.
$$0 + (-1) = -1.$$
So how does it get to 0 - 1? Just interested.
Nope, the previous 2 numbers before 1 are 0 and 1. If we prolong your sequence...
$$\ldots, -8, 5, -3, 2, -1, 1, 0, 1, 1, 2, 3, 5, 8, \ldots$$
Notice a pattern? :)