Bytes to Text?

I’m asking alot of questions lately eh?
I can’t seem to make it work D:


public function ByteToText(Bytes:Number):String {
            var Kilobytes:Number = 0;
            var Megabytes:Number = 0;
            var Gigabytes:Number = 0;
            var Output:String = Bytes + " bytes";
            Kilobytes = Bytes / 1024
            Megabytes = Kilobytes / 1024
            Gigabytes = Megabytes / 1024
            if (Bytes > 1024) {
                Output = Math.round(Kilobytes) + " kilobytes, and " + Math.round(Bytes/1024) + " Bytes";
            }
            if (Kilobytes > 1024) {
                Output = Math.round(Megabytes) + " Megabytes, " + Kilobytes / Megabytes + " Kilobytes, and " + Bytes / Kilobytes + " Bytes";
            }
            if (Megabytes > 1024) {
                Output = Math.round(Gigabytes) + " Gigabytes, " + Megabytes / Gigabytes + " Megabytes, " + Kilobytes / Megabytes + " Kilobytes, and " + Bytes / Kilobytes;
            }
            return Output;
        }

The problem is when it says how many extra megabytes or kilobytes or bytes.
Thanks if you help!