How to make an object move to specific place?

K … I have a game and when my guy walks over a certain mc i want a certain object thats already on the screen to move 2 a specific point, like 56,13 or something… Ive read the turtorials for how 2 do it but nothing for that…

onClipEvent (enterFrame) {
if(_root.car.hitTest(_root.finishline)){
?
} else {
play();
}
}

i need some command to put there to make a specific MC move to a certain spot… any help…