Question
JavaScript Question Assume you have been asked to implement a simple JavaScript memory game of size 2 x 2 using the following HTML code. When
JavaScript Question Assume you have been asked to implement a simple JavaScript memory game of size 2 x 2 using the following HTML code. When the user clicks on any Question mark picture, your code should reveal the hidden one. The revealed picture should be visible until the user clicks on another Question mark picture, if both pictures are the same, then it should be kept visible, otherwise, both pictures should be replaced by questions mark pictures. Implement showPico) function with any necessary global variables that fulfill the above requirements. If the user revealed all the pictures successfully change the message Keep Trying to You WON. Assume the following: . you have a global array storing two pairs of pictures as follows: var pics=['p1.png-p1.png':'p2.jpg p2.jpg"); • each index in the array is associated with the HTML images objects, i.e. pics[2) refer to the third image (images[2]) in the webpage . Note that q.png is the picture with Question Mark. I