int ilovecatboyssomuch = 9;
void setup() {
// put your setup code here, to run once:
pinMode(ilovecatboyssomuch,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(ilovecatboyssomuch, HIGH);
delay(5);
digitalWrite(ilovecatboyssomuch, LOW)
delay(6);
}