const team = [
        'Mashrafi', 
        'Sakib', 
        'Mahmudullah', 
        'Mushfiq', 
        'Tamim', 
        'Rubel', 
        'Aftab', 
        'Razzaq', 
        'Rafiq'
    ];
const [captain, assistant, ...players] = team;
consoloe.log(captain);

What is the output of consoloe.log(captain); in your console?