Setting a range for an "if" statement

How woud you go about saying if _xmouse is greater than 200 but less than 350, do these actions. How would you write that in actionscript?
I was trying :


if (_xmouse>200&&<350){
trace("hello")
}

Obviously Im doing something wrong, any help would be appretiated, Thanks.