Js Test on Canva doesn't show up
So I was trying to add a Text to my existing canva, and looked over it about 20 times, but it still doesn't show my text. Why? window.onload = function() { var canvas = document.getElementById("canva"); var context = canvas.getContext("2d"); var x = 300; var y = 350; let btn = document.getElementById("jump"); btn.onclick = function draw () { var count = 0; count += 1 //changing the y position y -= 25; //clearing the canvas context.clearRect(0, 0, 600, 400); //redrawing the circle context.beginPath(); context.arc(x, y, 50, 0, 2 * Math.PI); context.fillStyle="red"; context.fill(); //drawing the count value context.font = "25px Arial"; context.fillStyle = "white"; context.fillText =("Count:", + count, 20, 30); }; };