Arduino Flex sensor values stored in 2 processing variables.

Awesome got it working, the problem was that I was using A0 and A5 in the analog read which was creating a string that looked like:
A0 value = 250
A5 value = 256
A0 value = 250
A5 value = 256
etc...
As soon as i changed A0 -> 0 and A5 -> 5 it generated the right string in the form of:
250,256
250,256

I didnt realise that A0 and 0 were 2 completely different things =\