Jeroo Lab 2b preparation

Practice your code reading skills: What letters of the alphabet will be created from the 3 different program codes below?

Dim kip as Jeroo = new Jeroo(5)

kip.plant()
kip.turn(RIGHT)
kip.hop()
kip.plant()
kip.hop()
kip.plant()
kip.turn(LEFT)
kip.hop()
kip.plant()
kip.hop()
kip.plant()
kip.turn(LEFT)
kip.hop()
kip.plant()
kip.hop()
kip.plant()

Dim kip as Jeroo = new Jeroo(7)

kip.plant()
kip.hop()
kip.plant()
kip.hop()
kip.plant()
kip.turn(RIGHT)
kip.hop(2)
kip.plant()
kip.turn(RIGHT)
kip.hop()
kip.plant()
kip.hop()
kip.plant()
kip.turn(RIGHT)
kip.hop()
kip.plant()

Dim kip as Jeroo = new Jeroo(7)

kip.plant()
kip.hop(2)
kip.plant()
kip.turn(RIGHT)
kip.hop(2)
kip.plant()
kip.turn(RIGHT)
kip.hop(2)
kip.plant()
kip.turn(RIGHT)
kip.hop()
kip.turn(RIGHT)
kip.hop()
kip.plant()

What is the code to create a Jeroo that starts out at location (2,7) facing NORTH with 8 flowers?

What is the code to create a Jeroo that starts out facing WEST at location (5,10)with no flowers?

If there are 2 Jeroos who have been created with the following lines of code:
Dim Artemis as Jeroo = new Jeroo(1)
Dim Letitia as Jeroo = new Jeroo(2,1)

What is the code to pass the flower from Artemis to Letitia?