In need help with an arcade expression that will allow a 'pass/fail' value when an end user selects a point and whatever value that enter cause a pass/fail prompt. I currently have it setup properly when they are concerned whether or not a value is above or below a certain value but now they are wanting it to work for range values meaning if the value is between 6-9 then it would cause a pass prompt and any values outside of that would be a fail. The script below works for the greater/lesser than parameters but I'm having a hard time making it work for ranges.
var Zinc = $feature.Zinc;
if (Zinc > 0.067) {
return Zinc + ' mg/l (Fail)'
} else if (Zinc < 0.067) {
return Zinc + ' mg/l (Pass)'
}