Arduino, Button, Sound and an LED

Hello all
I have a project that I could use some help with...
What I am trying to do is push a button to make a Sound come on
at the same time a Blinking LED comes on...
Here is the Sound Module...
Here is a short Video of what I am trying to do...
I just don't know how to trigger it...
Thanks for the help

I just don't know how to trigger it...

On that module you identify on the push buttons what wire is the signal and what wire is the ground.

You wire the Arduino outputs to the signal switch inputs and wire the one ground of the arduino to the one ground of the sound module.

Then make all the Arduino outputs high and do a digitalWrite LOW on the pin corresponding to the button you want to push. Keep this low for about half a second before putting it high again.

Man I will never learn this stuff...

On that module you identify on the push buttons what wire is the signal and what wire is the ground.

You wire the Arduino outputs to the signal switch inputs and wire the one ground of the arduino to the one ground of the sound module.

I got this part...
Could you show me an example please?
Thanks so much for the help
Mike

Could you show me an example please?

Example of what?

You have the module and the link you gave is not very useful in how it is wired up. But each switch has two wires attached to it and it goes into the sound module. if you measure the resistance between one of these wires and the next pair of wires you will find two that are shorted, that is your common ground.

If you mean example of software it is the same as a simple blink LED sketch in the examples part of the Arduino IDE.

Thanks Grumpy_Mike...
That's what I wanted to know...
Awesomeness...