function Newcar(name, color, speed){
 this.모델명=name;
 this.색깔=color;
 this.속도=speed;
 this.method=function(){return '내 차는 ' + this.색깔 + '의 ' + this.모델명 + '이고, 최고 속력은 ' + this.속도 + 'Km/h이다.';}}

 var mycar=new Newcar('벤츠','빨간색','150');
 alert(mycar);

 

실행하면 내 차는 빨간색의 벤츠이고, 최고 속력은 150Km/h이다. 라는 문장이 출려되야 되는데

 

[object object]로 뜬다.

 

어디가 틀린거임?