My school assignment says
In this task you will implement a simple version of Address Resolution Protocol (ARP). A button press on one micro will send a request to the other micro for its “MAC” address. The micro should respond with its IP number and “MAC address” which you add to a table. The IP number will be a string which represents an IP address, eg “192.168.1.2” and the MAC address is a string in the standard MAC address format. Since neither the IP and MAC address are real, you will need to hard wire these into the response code.
Alternatively, instead of the MAC address, you should do some research on how to find the unique identifier from your micro:bit, and use that.
The device that sends the ARP request should display the response, i.e. IP and “MAC” address ofthe receiver.
I don't want any code that I want to figure out myself, I just wanted to know the interpretation in plain language that what exactly do I need to code.