I am trying to use .innerHTML to overwrite a p.
The first time i do it, it overwrites it successfully however when i try it a second time it doesn't seem to work. I planned to put in some CSS in the future, so thats is empty.THIS IS THE JAVASCRIPT
    function create() {
        var x = document.getElementById("cName").value;
        var y = document.getElementById("cType").value;
        window.alert("Running new card")
        newCard(x,y)
    }
    function newCard(name,type) {  
        window.alert("new card ran")
        this.name = name;
        this.type = type;
    }
    function print(){
        document.getElementById("cardName").innerHTML = this.name
        document.getElementById("cardType").innerHTML = this.type
    }
THIS IS THE HTML
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css" />
<title>TealeStone</title>
</head>
<body>
    <script src="JavaScript.js"></script>
    <form name="newCard">
        Card Name : <input type="text" id="cName" />
        Card Type : <input type="text" id="cType" />
        <button onclick="javascript:create()">Submit</button>
    </form>
    <p id="cardName">Card name</p>
    <p id="cardType">Card type</p>
    <script>
        print()
    </script>
    </body>
    </html>
