Trying to add randomness to which image is displayed. Issue with saying calling and or statement.
var image = url3 | url2 | url1;
buildImage(image);
function buildImage(imagesrc) {
var img = document.createElement('img');
img.src = imagesrc;
document.getElementById('content').appendChild(img);
ORmeans in programming. It's not how you make a collection of things, it's a boolean or binary operation.datatype image = url1 | url2 | url3would be perfectly valid.