So I'm trying to learn javascript, and I want to find the median of some numbers that I insert into a prompt when I click on the button "find median".
  function Media()
 {
     var n = prompt("number of elements?");
     var i = 1;
     var s = 0;
     
     for (i=1;i<=n;i++)
     {
         var m = prompt("insert # " +i);
         s = s+m;
     }
     var media = s/n;
     document.getElementById("rezultat").innerHTML = "result: " +media
 }
I made a test with two numbers, 1 and 2, and the median was 6, and i cant figure what i've done wrong
 
     
    