1some_array = ["John", "Sally"];
2some_array.push("Mike");
3
4console.log(some_array); //output will be =>
5["John", "Sally", "Mike"]
1var vegetables = ['Capsicum',' Carrot','Cucumber','Onion'];
2vegetables.push('Okra');
3//expected output ['Capsicum',' Carrot','Cucumber','Onion','Okra'];
4// .push adds a thing at the last of an array