I have been trying to think of a way to store the data received in Line 1 (mentioned in comments) in to a variable that I can modify later on.
var requestOptions = {
    method: 'GET',
    redirect: 'follow'
};
fetch("https://api.covid19api.com/live/country/south-africa", requestOptions)
    .then(response => response.text())
    .then(result => console.log(result)) //Line 1
    .catch(error => console.log('error', error));
 
     
    