Javascriptを使用して、ローカルフォルダから2つのランダムな画像を選択し、別々のPhotoshopレイヤーに配置しようとしています。私は選択するファイルパスを持つ配列を作成しました。画像をランダムに選択するPhotoshopスクリプト
#target photoshop
var allImages = [“file path/img-1.jpg”, "file path/img-2.jpg", "file path/img-3.jpg"];
//this is a large array of file paths to 100 different images
var pickImage = allImages[Math.floor(Math.random() *
allImages.length)];
var imgFile = File(pickImage);
var openFile = app.open(imgFile);
var secondImage = allImages[Math.floor(Math.random() * allImages.length)];
app.activeDocument.artLayers.add(secondImage);
これにより、最初の画像が開き、上に空白のレイヤーが作成されますが、2番目の画像は挿入されません。私は何が欠けていますか?