Original code:
function endangeredSpecies(continent, species) { // Implement the function here. } // Example case $('body').html( `
Critically Endangered
Near Threatened
Extinct
` ); console.log(endangeredSpecies('North America', 'American bison')); // should print 'Near Threatened'