Create a function that takes a string containing integers as well as other characters and return the sum of the negative integers only.
negativeSum("-12 13%14&-11") β -23
// -12 + -11 = -23
negativeSum("22 13%14&-11-22 13 12") β -33
// -11 + -22 = -33
There is at least one negative integer.