Hi Guylene,
sorry I didn't reply before, but I've been away from this site for other tasks.
In your vi the sound wave extracted is an array in 8bit format; this means that each value in the array may have a value included between 0 and 255 (8bit), this is the un-signed format (only positive numbers).
Obviuosly a sound wave array has both positive and negative values, to exctract them you have to subtract 127 from your unsigned 8 bit array.
In this way the numbers from 0 to 126 are negative, 127 is 0; from 128 to 255 are positive.
I attach a simple vi that shows these differences.
Good luck,
Alberto