Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. const testArray = ['Silver', 'Happy', 'Xan', 'Kevin']
  2.  
  3. testArray.splice(2, 0, 'Aiya', 'Dung')
  4.  
  5. console.log(testArray)