I am trying to see if something is between two values, I thought you could use the between operator in normal VB if statements

Im doing this and getting an error

VB Code:
  1. If Pitch  not between First_Pitch_Position - 5 and First_Pitch_Position + 5 then
  2. 'do Whatever
  3. end if

Am I missing something???