Answer:
Fix the assignmentin 14 and 21 as suggested in the comments above. Use the := assignment operator.
Step-by-step explanation:
The assignment operation in pascal is :=
So to give x the value 5, you'd write x := 5
In your program, you're assigning a value to compx, so fix it as
compx := Random(20)+1;