What to recover
The LFS variable was presumably unset when you ran this command. So it modified /lib64/ld-linux-x86-64.so.2 and /lib64/ld-lsb-x86-64.so.3.
You've corrupted the dynamic loader. As a consequence, you can't run any dynamically linked program. Pretty much every program is dynamically linked, including bash, init, ln, etc.
/lib64/ld-linux-x86-64.so.2 is the important one. It's the dynamic loader used by 64-bit Arch programs. The symbolic link is provided by the glibc package. From a working Linux system, run
ln -snf ld-2.33.so /lib/ld-linux-x86-64.so.2
Note: the number 2.33 will change over time! Check what file /lib/ld-*.so exists on your system.
/lib64/ld-lsb-x86-64.so.3 is for compatibility with programs not built for Arch. It's provided by the ld-lsb package. If this package is installed, restore the link:
ln -snf ld-linux-x86-64.so.2 /lib/ld-lsb-x86-64.so.3
If ld-lsb is not installed, remove /lib/ld-lsb-x86-64.so.3.
Self-contained recovery with advance planning
When dynamic libraries are corrupted, you can still run statically linked executables. If you're running any kind of unstable or rolling-release system, I recommend having a basic set of statically linked utilities. (Not just a shell: a statically linked bash is of no help to create symbolic links, for instance.) Arch Linux doesn't appear to have one. You can copy the executable from Debian's busybox-static or zsh-static: both include a shell as well as built-in core utilities such as cp, ln, etc.
With such advance planning, provided you still have a running root shell, you can run busybox-static and
ln -snf ld-2.33.so /lib/ld-linux-x86-64.so.2
Or run zsh-static and
zmodload zsh/files
ln -snf ld-2.33.so /lib/ld-linux-x86-64.so.2
If you've rebooted and are stuck because /sbin/init won't start, boot into the static shell: follow the steps in Crash during startup on a recent corporate computer under “Useful debugging techniques:”, starting with “press and hold Shift”. On the linux command line, add init=/bin/busybox-static (or whatever the correct path is).
Repairing from a recovery system
Without advance planning, you'll need to run a working Linux system to repair yours. The Arch wiki suggests booting a monthly Arch image. You can also use SysRescueCD. Either way, use your written notes, lsblk, fdisk -l, lvs, or whatever helps you figure out what your root partition is, and mount it with mount /dev/… /mnt. Then repair the symbolic link:
ln -snf ld-2.33.so /mnt/lib/ld-linux-x86-64.so.2