Trying to declare an IP using a variable

WizenedEE:
You should do this:

IPAddress ip(192,168,2,y);

The value of

(192,168,2,y)

is simply y, because you're using the comma operator. So you're saying: ip = y
My version says "call the constructor for IPAddress with 4 values"

Also, should y be 145?

Thank you very much, this works perfectly, its annoying i didn't realise this. y was just a random number to prove my point.