Yes:
* Place a ; after the program statement.
* Place a ; after random(1)
* Remove the ; before else
* It is "integer, not "interger".
* Use := in assigments, not =

Further, random(1) returns 0 or 1, not 1 or 2, so you will want to use random(1)+1

Many of these errors, escpecially the ; ones can be very easily solved by looking at the compiler error messages.