I am getting undefined result instead of list array. Here is my code
      $.ajax({
                type: "POST",
                url: "DeviceInfo.aspx/GetDeviceValues",
                data: {},
                async:true,
                contentType: "applciation/json; charset=utf-8",
                datatype: "json",
                success: function (msg) { var arr = msg.d; alert(arr); for (var i in arr) { alert(i) } },
                error: function (x, e) {
                    alert("The call to the server side failed. " + x.responseText);
                }             });
Here is the webmethod i am calling
[WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Json)] 
    public static List<string> GetDeviceValues()
    {
        System.Web.Script.Serialization.JavaScriptSerializer serializer = new System.Web.Script.Serialization.JavaScriptSerializer();
        List<string> Row = new List<string>();
        Row.Add("First Device ");
        Row.Add("IMEI No Is 22323233");
        Row.Add("UI No is 23232");
        Row.Add("Msg No is 12");
        Row.Add("Active is status is true");
        Row.Add("InActive status is false");
        return Row;
    }
When i see the msg.d or msg value it showing as undefined, what's wrong with my code.

