here for the testing purpose I have added only one background image, but what I actually need to do is to change the background on each reload. That means I need to pass an array where the path of all the images will be there and the background should change on each reload. The code is attached below. The whole project is based on react
function App() {
return (
<div className="App" style={
{
backgroundImage: `url("back.jpg")`
}
}>
<div className='container'>
<div className='container'>
<Header/>
<Footer/>
</div>
</div>
</div>
);
}