Jane Doe
Level 12 Explorer
The data flow in the network is chaotic. You need to create conditional pathways to route the data correctly.
Text packets -> Text Server Image packets -> Image Server Audio packets -> Audio Server Corrupted packets -> Error Handler
0/3 test cases passed
/** * Route data packets based on their type * @param {Object} packet - The data packet to route * @param {string} packet.type - The type of the packet (text, image, audio) * @param {string} packet.data - The data contained in the packet * @param {boolean} packet.corrupted - Whether the packet is corrupted * @returns {string} - The destination server */ function routePacket(packet) { // Your code here }
Run your code to see output here