const myArray = ['position zero', 'position one', 'position three', 'position four'];
// i neeed to convert it to
const objectArray = [
{
position: 'position zero'
},
{
position: 'position one'
},
{
position: 'position three'
},
{
position: 'position four'
},
];
// must the same key which i will be refer to all