TBelly LOVES Us And We Love Them – Raven

TBelly We Met On A Train Review

We’ve been friends with TBelly’s lead singer, Russell Keefe, for what feels like forever, and he’s finally released a song that really captures our friendship – “We Met On A Train.” It seems like he created it just for us! Actually, we’ve never met Keefe in person. But what does that matter!

From the first verse all the way to the last chorus, this song captures both of our personalities perfectly. Lyrically speaking, it doesn’t take itself too seriously, but still manages to convey a meaningful message. The lighthearted melodies match perfectly with TBelly’s cheeky delivery, and they come together to create something truly special.

And if that wasn’t enough, it has some of the catchiest riffs I’ve ever heard! They’ll stay stuck in your head long after you stop listening to the track. Plus, the instrumentals are top-notch – every part of this song is as near-perfect as you can get.

“We Met On A Train” is sure to be an instant classic – TBelly has done it again!

Audio Player
Copyright © 2025 Masters Radio
document.addEventListener('DOMContentLoaded', function () { var shuffleBtn = document.getElementById('shuffle-playlist'); if (!shuffleBtn) return; shuffleBtn.addEventListener('click', function () { // Find the playlist container var playlist = document.querySelector('.wp-playlist-tracks'); if (!playlist) { alert('Playlist not found. Please check the selector.'); return; } // Get all tracks as an array var tracks = Array.from(playlist.querySelectorAll('.wp-playlist-item')); // Fisher-Yates shuffle for (let i = tracks.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [tracks[i], tracks[j]] = [tracks[j], tracks[i]]; } // Remove all tracks and re-append in shuffled order tracks.forEach(track => playlist.appendChild(track)); // Optionally, play the first song after shuffling: // Try simulating a click on the first song's link setTimeout(function () { var firstTrack = playlist.querySelector('.wp-playlist-item a.wp-playlist-caption'); if (firstTrack) firstTrack.click(); }, 300); }); });