can anyone help with me with the answer to the these two question. I'd be very grateful for any help at all.
(b) Consider the Scalable Vector Graphics (SVG) code provided below, which generates
the lime-green polygon image as depicted. Modify this code so that the polygon’s scale
changes on the page, so that after one full second its size is zero in both the horizontal
and vertical directions. (7 marks)
<svg xmlns="http://www.w3.org/2000/svg">
<polygon fill="lime" stroke="blue" stroke-width="10"
points="850,75 958,137.5 958,262.5
850,325 742,262.6 742,137.5" />
</svg>
(c) Consider the Scalable Vector Graphics (SVG) code provided below, which generates
the red star image as depicted. Amend this code so that this star shape is duplicated 100
times at different (random) positions on the screen, using the cloneNode() approach.
Note that the javascript function Math.random() produces a random floating-point
number between 0 and 1. (8 marks)
<svg xmlns="http://www.w3.org/2000/svg">
<polygon fill="red" stroke="blue" stroke-width="10"
points="350,75 379,161 469,161 397,215 423,301
350,250 277,301 303,215 231,161 321,161" />
</svg>
_____________________________________________________
_______________