What is a good driver for OT-RK-390 motor?

Hi,
Thank you for your attention to my problem!
Here is a pic of wiring and a code. All is pretty simple I want to just make this motor to work at first.

#define out1 7
#define out2 8
#define sign 9

void setup() {

pinMode(out1, OUTPUT);
pinMode(out2, OUTPUT);
pinMode(sign, OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
digitalWrite(out1, HIGH);
digitalWrite(out2, LOW);
analogWrite(sign, 200);
delay(1000);

}