var picture = new SimpleImage("palm-and-beach.png"); print (picture); function negative(){ for(var pixel of picture.values()) { //Make any modifications below pixel.setRed(255-pixel.getRed()); pixel.setGreen(255 -pixel.getGreen()); pixel.setBlue(255-pixel.getBlue()); } print(picture) } negative();