how to append object in array javascript

JavaScript
var select =[2,5,8];
var filerdata=[];
for (var i = 0; i < select.length; i++) {
  filerdata.push(this.state.data.find((record) => record.id == select[i]));
}
//I have a data which is object,
//find method return me the filter data which are objects
//now with the push method I can make array of objectsvar studentList = ['Jason', 'Samantha', 'Alice', 'Joseph'];

//Add a new student to the end of the student list
studentList.push('Jacob');var a=[]
var b={};
a.push(b);    var object = "Some Object"
var array = []

array.push(object)
Source

Also in JavaScript: