From 4e7bfb05573f3dd19fa783fab351abca6bd7c40f Mon Sep 17 00:00:00 2001 From: gustavo fabris Date: Mon, 29 Jul 2024 11:11:10 -0300 Subject: [PATCH] Update 01.js --- 01.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/01.js b/01.js index 833ee450..a1e1b20a 100644 --- a/01.js +++ b/01.js @@ -11,10 +11,12 @@ function soloNumeros(array) { // soloNumeros([1, 'Henry', 2]) debe retornar [1, 2] // Tu código aca: + const array =[1,2,3,'Henry','Gus']; + return array[0,1]; } // No modifiques nada debajo de esta linea // -module.exports = soloNumeros \ No newline at end of file +module.exports = soloNumeros