Hi, You are using assignment operator in the condition block, instead you have to use comparisons operators.if (this.rawValue <= 5 || RadioButtonList3.rawValue = 2) { ,,,, this should beif (this.rawValue <= 5 || RadioButtonList3.rawValue == 2) {finally, you would use comparison operations in the c...