Level 1: Fix Method to Move Right
Your Tetris block should move right when calling moveBlock("right"). Fix the method.
Java Code: public moveRight() {
System.out.println("Moving Right");
}
Hint: Remember to declare the method return type as void.