what are 4 consecutive integers whos sum is -2

let x = first number

let x+1 = second number
let x+2 = third number
let x+3 = fourth number
*note that there is +1 for every number since they are consecutive.
therefore,
x + x+1 + x+2 + x+3 = -2
4x + 6 = -2
4x = -8
x = -2
x+1 = -1
x+2 = 0
x+3 = 1

hope this helps~ :)