class MyClara extends Clara {
publicint moves=0;
publicvoid act() {
String key = getKey();
// to count total number of moves
if(key == “right” || key == “left” || key == “up” || key == “down”){
moves++;
}
if (key == “right”) {
setDirectionRight();
move();
