Feedback for: "Comparisons with the Logical Or Operator"

Hello, I notice a few other support topics on this particular challenge so I’d like to bring something to the attention of the FCC staff. I think the Instructions need a small tweak.

This line specifically:

…if val is not between 10 and 20, inclusive.

The word inclusive threw me off when I was working on it. I interpreted that to mean including 10 and 20, but if we do that the tests fail.

Examples:
This includes 10 and 20:

if (val <= 10 || val >= 20) {
    return "Outside";
}

This excludes 10 and 20:

if (val < 10 || val > 20) {
    return "Outside";
}

The tests pass with the latter but the Instructions call for inclusion.

I don’t need any support. It is ok to close this. I am moving on with the course, but I want to let someone at FCC know about it.