PLEASE HELP 15 POINTS; JAVASCRIPT
What will the code below do, assuming there's a player object already created?

setTimeout(function(){
player.center();
},1000);

A. Probably nothing, it won't work
B. Move the player down every second
C. Center the player every 1 second
D. Move the player to the center after 1 second