El ejercicio me dan error porque según los valores (one) y (two) son erróneos pero a mi si me da el valor en el print

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.

 **Tu código hasta el momento**

function functionWithArgs(one, two){

var sumar =  one + two;
console.log(one + " + " + two + " es: " + sumar); 
}

functionWithArgs(1, 2);
functionWithArgs(7, 9); 
 **Información de tu navegador:**

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36

Desafío: Pasa valores a las funciones utilizando argumentos

Enlaza al desafío:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.


This isn’t quite the output that was requested.

Crea una función llamada functionWithArgs que acepte dos argumentos y muestre la suma de ellos en la consola de desarrollador.

You need to log the sum of the two arguments an nothing else.