int catboys =5;
//maxineluvscatboys
void setup() {
// put your setup code here, to run once:
pinMode(catboys , OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(catboys,330 );
delay(150);
tone(catboys,494 );
delay(300);
tone (catboys, 523);
delay (150);
tone (catboys,587);
delay (150);
tone (catboys, 523);
delay (150);
}