It does show the time in seconds. The format shown is Hour:Minute:Seconds so what you want to look at is the last 2 digits
As promised,here is how you can control what range of number the player selects
SET CURSOR 150,150
INK RGB (255,255,0),0
SET TEXT FONT "ARIEL"
SET TEXT SIZE 14
SET TEXT TO BOLD
SET TEXT TO ITALIC
PRINT "Welcome to my math random game"
WAIT KEY
PRINT
PRINT "Press enter to begin or press esc to exit"
WAIT KEY
PRINT
PRINT "Please enter the number you want to"
PRINT "to gamble with (between 1-6)"
Input "Choose a number(1-6): ",dice#
while dice# < 1 or dice# >6
Print "Invalid Selection (1-6)"
Input "Choose a number(1-6): ",dice#
endwhile
RANDOMIZE TIMER ()
dice1 = RND (5)+1
IF dice1=dice#
PRINT
PRINT "You Win!"
ELSE
IF dice1>dice# OR dice1<dice#
PRINT
PRINT "You lose"
ENDIF
ENDIF
PRINT
PRINT "Click enter to fint out what the computer"
PRINT "randomly chose as a number"
WAIT KEY
PRINT "The computer dice number was ", dice1
PRINT
PRINT "Click enter to find out time it is"
WAIT KEY
PRINT "It is ", GET TIME$ ()
WAIT KEY
END
Now here's a hint.. given the time which the game begins and the time it ends.. can you figure out how to display how much time elapsed between the start time of the game minus the end of the game..