let x, y, z;
x = prompt("number 1");
y = prompt("number 2");
z= x + y;
document.write(z)
this is my code and I am just a beginner(I mean literally I know nothing) when I run this page I get the wrong result (12+5 = 125) please help. Multiplication division and subtraction work
Edit: You just need to replace prompt with +prompt