I was unable to recover the value : [object object]

    typeChercher: function () {
 return namecollection.find("typeChercher");
    },
 <div class="col-xs-11">
                        <p> Offre d'emplois comme un {{typeEmplois}}
                            pour un  {{typeChercher}} 
                            dans le ({{displayDepartement}}) le {{createdAtFormatted}} </p>
                    </div>


what’s the solution for get data

collection.find returns a cursor you need to iterate over. Either use {{#each type in typeChercher}} in your template or have your helper return a single object with collection.findOne()