/ *
Métodos de array - classificar
--------------------
* /
var numbers = []; // add numbers from 1 to 10 into this array
var mentors; // Create an array with the names of the mentors: Daniel, Irina and Rares
/*
DO NOT EDIT BELOW THIS LINE
--------------------------- */
console.log(numbers);
console.log(mentors);
/ *
RESULTADO ESPERADO
---------------
[1, 2, 3]
* /
/ *
Métodos de array - concat
----------------------
A variável todos deve ser uma matriz contendo mentores e alunos.
* /
var mentors = ["Daniel", "Irina", "Rares"];
var students = ["Rukmini", "Abdul", "Austine", "Swathi"];
var everyone; // complete this statement
/*
DO NOT EDIT BELOW THIS LINE
--------------------------- */
console.log(everyone)
/ *
RESULTADO ESPERADO
---------------
["Daniel", "Irina", "Raros", "Rukmini", "Abdul", "Austine", "Swathi"]
* /