Use the character ` instead of ’ for your fetch statement:
let response = await fetch (`https://financialmodelingprep.com/api/v3/stock/real-time-price/${stkSymbol}?apikey=abcMYKEY123`);
This will allow ${stkSymbol} to be replaced with the actual val...