I have been wondering which VM would be the most easy to target?(I am very new to writing compilers) JVM, LLVM or even some web assembly interpreter (The language being similar to PHP/Perl)
It may be that some of the VMs that Raku (fka Perl 6) has generated might be useful. I believe, at least as of a few years ago, they still mostly working on NQP as the intermediate language, where NQP is a low language "like" Perl (NQP is an acronym for Not Quite Perl) which is used to implement the higher level language features, allowing for fairly easy porting to other VMs as long as NQP is supported (for example, Raku was ported to Java by implementing an NQP interpreter, which allowed the majority of the vastly more complex Raku language to just work).
LuaJIT is also a popular choice I hear. This would have the benefit of using Lua, which is a widely deployed and well known small language, and LuaJIT is known to be extremely fast.