public class Oddie
{
    private final int MAX= 12 ;
	 private int faceValue;
 	 Oddie ( )
	 {
	    this.faceValue = 1;

	 }
	
	 public static int roll()
	 {
	    int value;
		 value = (int) (Math.random()*12) + 1;
		 
		 return value;
	 }
	 
	 public void setFaceValue (int value)
	 {
	   this.faceValue = value;
	 }
	 
	 public int getFaceValue ()
	 {
	   return this.faceValue;
	 }
	 
	 public String toString ()
	 {
	   String temp;  
		temp = " The face of this Oddie is showing a " + this.faceValue;
		return temp;
     }
	}
