Database

[{_id:"bmasndvhjbcw",name:"lucas",occupation:"scientist",present_working:true,age:55,location:"texas",},{_id:"bmasndvhjbcx",name:"mark",occupation:"scientist",age:45,present_working:true,location:"texas",},{_id:"bmasndvhjbcq",name:"cooper",occupation:"physicist",age:69,location:"texas",}]

Query

db.collection.aggregate([{$group:{_id:null,docs:{$push:"$$ROOT"}}},{$unwind:{path:"$docs",includeArrayIndex:"index"}},{$addFields:{"docs.date":{$add:[{$dateFromString:{dateString:"2019-11-25T01:00:00.000"}},{$multiply:["$index",{$multiply:[24,60,60,1000]}]}]}}},{$replaceRoot:{newRoot:"$docs"}}])

Result