Unverified Perl If Statement help

Here is what I need to do...I need to write perl that satisfies this statement.
IF (C1=1-4, 8,9) and (SH1 = 1,2,3,5,8,9) then replace text with September

It keeps giving me an error. I Know that I can do multiple verification within perl, but I'm not sure how to write this exactly... I've started it, but if someone can finish it or write it correctly - THANK YOU!

[% Begin Unverified Perl

if (VALUE("c1") <5 || VALUE("C1") == 8 || VALUE("C1") == 9 && VALUE("SH1") < 4 || VALUE("SH1") == 5 || VALUE("SH1") == 8 || VALUE("SH1") == 9)) {
return "September?";
}
End Unverified
%]

Resolved
3 replies