Hello all,
I am relatively new to Visual Studio, but not programming. Debugging is causing a problem for me that I have been working on for quite some time. Specifically, my debugger window (Microsoft Edge) is just showing code text and not running my program.
My code is as follows:
'use strict';
console.log('Hello world');
var a = 1;
var b = 2;
var c = 3;
var d = c / a + b;
console.log ("The computed variable is " + d);
However, an attempted debug run results in the following output:

I do think this is better than my previous status, whereby I was receiving a 'localhost refused to connect (ERR_CONNECTION_REFUSED)' page.
As you can see, even a simple program containing a console log and simple arithmetic is displayed as just text and not a running program.



