good morning, please i would like to request the marking guide for the silly story generator for JS begineer. Thank you so much. my email is somtougeman@gmail.com or can i paste my code here because i was having a little problem running a .replace(); in an array format.
var customName = document.getElementById('customname');
var randomize = document.querySelector('.randomize');
var story = document.querySelector('.story');
function randomValueFromArray(array){
return array[Math.floor(Math.random()*array.length)];
}
var storyText = "It was 94 farenheit outside, so :insertx: went for a walk. When they got to :inserty:, they stared in horror for a few moments, then :insertz:. Bob saw the whole thing, but he was not surprised — :insertx: weighs 300 pounds, and it was a hot day.";
var insertX = ['Willy the Goblin',
'Big Daddy',
'Father Christmas'];
var insertY = ["the soup kitchen",
"Disneyland",
"the White House"];
var insertZ = ["spontaneously combusted",
"melted into a puddle on the sidewalk",
"turned into a slug and crawled away"];
randomize.addEventListener('click', result);
function result() {
var newStory = storyText;
var xItem = randomValueFromArray(insertX);
var yItem = randomValueFromArray(insertY);
var zItem = randomValueFromArray(insertZ);
// i think i am not writing the array well here
var newStory = [newStory.replace(':insertx:',xItem), newStory.replace('— :insertx:',xItem), newStory.replace(':inserty:',yItem), newStory.replace(':insertz:',zItem)];
if(customName.value != '') {
var name = customName.value;
var newName = storyText.replace('bob',name);
}
if(document.getElementById("uk").checked) {
var weight = Math.round(300*0.071429) + ' stones';
var temperature = Math.round((94-32)/1.8) + ' centigrade';
var newWeight = storyText.replace('300 pounds',weight);
var newTemperature = storyText.replace('94 farenheit',temperature);
}
story.textContent = newStory;
story.style.visibility = 'visible';
}
I would really appreciate help. Thank you