If you are using React and mapping images then in your import do this
import fallBackImage from '/path/to/your/fallback/image' <img src={array.image || fallBackImage} alt='alternate image' />
In my case this worked