السلام عليكم لدي هذه الكود يقوم بختيار كلمات عشوائية

كيف اجع الكود مثلا يختار نفس الكلمة التي اختارها من سطر الاول

مثلا لنقل انه قام بطريقة عشوائة باختيار كلمة The telephone من المتغير الاول انا اريد اذا كانت نفس الكلمة التي اختارها من المتغير الاول يختارها من المتغير ثاني اذا كانت موجودة

  var proseSubjects = [
    "The clock ", "The telephone ", "The sun ", "The light ", "The moon ", "The sky " 
];
    var proseActions = [
    "ridicules ", "The telephone ", "enhances ", "celebrates ", "flings ", "heaps scorn upon ", "dumbfounds ", "reflects ", "speaks ", "screams " 
];
    var proseObjects = [
    "the flowerpot.", "the monkeywrench.", "a map of Croatia.", "the police box.", "the subconscious.", "the popcorn." 
];

//flipProse function, for buttons with class '.flipProse':


$('.flipProse').on('click', function() {


  var target = $("#" + $(this).data("target")); // return target element


  var subjects = proseSubjects[Math.floor(Math.random() * proseSubjects.length)]; //random subject
  var actions = proseActions[Math.floor(Math.random() * proseActions.length)]; //random action
  var objects = proseObjects[Math.floor(Math.random() * proseObjects.length)]; //random object
  
  var prose = subjects.concat(actions, objects); //concat random subject, action, and object


  var newWords = target.clone().text(prose).addClass("blinkProse"); // clone target, add text from nouns array, and blink text


  target.replaceWith(newWords); //replace target with new element
});