In an axial left turn, the left motor of the robot moves forwards and the right motor moves backward, thereby taking a right turn, as shown in the following diagram:
The code for an axial right turn is as follows:
digitalWrite(0,HIGH);
digitalWrite(2,LOW);
digitalWrite(3,LOW);
digitalWrite(4,HIGH);
delay(500);