is the following if statement valid?

if(0< maze[point.x][point.y] && maze[point.x][point.y] <= 5)

I wanted to say the array is greater than zero and equals to or less than 5.

Thanks!