Loop through Object and push into Array

I am looking to loop the object and want to add those object in array in Javascript.

 My Object:
        var raw_data = {
            "name":"Mike",
            "age":"27"
        }
     var array_data = []
 
Then I loop through the object: 

  for (let [key, name] of Object.entries(raw_data)) {
    if (name !== "") {
      array_data.push({
        email: `${raw_data.name}`,
        password: `${raw_data.age}`,
      });
    }
  }
  console.log(array_data);

My out put is :

[
  { email: '[email protected]', password: '1234567' },
  { email: '[email protected]', password: '1234567' }
]

I would like expect to get only one insert:

[
  { email: '[email protected]', 
  password: '1234567' }
]

Could you please help me how to get that?