Nano, bluetooth, accelerometer, need help putting them together

Arduino post
Hey guys, I was wondering if you could help me with my first ever Arduino project. For Christmas my wife gave me an arduino nano, a bluetooth module, and a 3-axis accelerometer module. I want to hook them all together to do the following:
Communicate axis coordinates through bluetooth to my pc
Be able to reprogram some things through bluetooth a stead of the USB.

I have looked up some tutorials for the individual components but I'm not sure how to get them all to work together. Any help in getting started is very very appreciated!
Thanks in advance!
Sincerely,
SM
"It seems to run on some form of electricity."

I am a new comer for Arduino, too. I didn't use Nano but Uno. But I think it's the same way for controlling.
Step 1. Connect your bluetooth module to your Arduino. Attention! You should connect Bluetooth's RX pin to Arduino's TX pin, and Bluetooth's TX pin to Arduino's RX pin.
Step 2. Include <SoftwareSerial.h> in Arduino
Step 3. Create a softwareSerial object, and tell Arduino where you plug RX and TX pin. For example:
SoftwareSerial BT(10, 9);

And then, you can control your Arduino via Bluetooth.

Thanks I will give that a try. I really appreciate it. Any ideas about integrating the accelerometer?